Skip to content

Commit

Permalink
ci: more readable job descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-- committed Aug 13, 2020
1 parent 1f90072 commit 38e27ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run_pytests.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: run pytests
name: paquo ci

on: [push, pull_request]

jobs:
# RUN PYTEST ON PAQUO SOURCE
tests:
name: paquo pytests on ${{ matrix.os }}::py${{ matrix.python-version }}
name: pytest ${{ matrix.os }}::py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
max-parallel: 5
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

# RUN MYPY STATIC TYPE ANALYSIS ON PAQUO SOURCE
typing:
name: paquo mypy
name: mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand All @@ -71,7 +71,7 @@ jobs:
# DEPLOY PAQUO TO PYPI ON SUCCESS
deploy:
needs: [tests, typing]
name: paquo deploy
name: deploy
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
Expand Down

0 comments on commit 38e27ab

Please sign in to comment.