Skip to content

Commit

Permalink
ci: Fix test workflow syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol committed Nov 17, 2020
1 parent 4e72e87 commit 698c585
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ jobs:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.7, 3.8, 3.9]

env:
GHA_OS: ${{ matrix.os }}
GHA_PYTHON: {{ matrix.python-version }}

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -39,5 +35,8 @@ jobs:
python -m pytest -v --cov=src tests
- name: Send code coverage report
uses: codecov/codecov-action@v1
env:
GHA_OS: ${{ matrix.os }}
GHA_PYTHON: {{ matrix.python-version }}
with:
env_vars: GHA_OS,GHA_PYTHON

0 comments on commit 698c585

Please sign in to comment.