Skip to content

Commit

Permalink
Fixes to Github Actions syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Jul 19, 2021
1 parent 2b7a862 commit 54cedaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
- run: pip install -U pip setuptools wheel
- run: pip install -r requirements.txt
- run: pip install --no-deps -e .
if: ${{ matrix.coverage == "yes" }}
if: ${{ matrix.coverage == 'yes' }}
- run: pip install --no-deps .
if: ${{ matrix.coverage != "yes" }}
if: ${{ matrix.coverage != 'yes' }}
- run: pip check
- run: pytest -Werror --cov=aiokatcp --cov-branch
- run: flake8
- run: mypy
- run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.coverage == "yes" }}
if: ${{ matrix.coverage == 'yes' }}

0 comments on commit 54cedaf

Please sign in to comment.