Skip to content

Commit

Permalink
Use correct if: syntax, hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Oct 5, 2023
1 parent abfa32e commit d2e791b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: ${{ matrix.python-version }} == "3.11"
if: ${{ matrix.python-version == '3.11' }}
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
Expand Down

0 comments on commit d2e791b

Please sign in to comment.