Skip to content

Commit

Permalink
Make names in the GHA lib workflow short (#669)
Browse files Browse the repository at this point in the history
Co-authored-by: Abhinav Singh <mailsforabhinav@gmail.com>
  • Loading branch information
webknjaz and abhinavsingh authored Nov 4, 2021
1 parent 91a8fb1 commit 62969b8
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/test-library.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Proxy.py Library
name: lib

on: [push, pull_request] # yamllint disable-line rule:truthy

Expand All @@ -15,7 +15,8 @@ concurrency:
jobs:
integration:
runs-on: ${{ matrix.os }}-latest
name: Library - Python ${{ matrix.python }} on ${{ matrix.os }}
name: >-
e2e: 🐍${{ matrix.python }} @ ${{ matrix.os }}
strategy:
matrix:
os: [macOS, Ubuntu]
Expand All @@ -41,14 +42,23 @@ jobs:
./tests/integration/main.sh
lint:
name: ${{ matrix.toxenv }}
name: >-
${{
toJSON(matrix.custom_job_name)
&& matrix.custom_job_name
|| matrix.toxenv
}}
runs-on: Ubuntu-latest
strategy:
matrix:
toxenv:
- cleanup-dists,build-dists,metadata-validation
- lint
custom_job_name:
- ''
include:
- custom_job_name: build-dists
toxenv: cleanup-dists,build-dists,metadata-validation
fail-fast: false

env:
Expand Down

0 comments on commit 62969b8

Please sign in to comment.