Skip to content

Commit

Permalink
ci: bad syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jun 16, 2024
1 parent 8b7901d commit 3039199
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
matrix:
python-version: ['3.6', '3.11']
os: [macos-latest, ubuntu-latest, windows-latest]
fail-fast: false

steps:
- uses: actions/checkout@v3
Expand All @@ -29,7 +30,7 @@ jobs:
# show installed packages
pip freeze
- name: install oldest supported numpy for Python 3.6
if matrix.python-version == '3.6'
if: matrix.python-version == '3.6'
run: |
python -m pip install numpy==1.19.2
- name: Test with pytest
Expand Down

0 comments on commit 3039199

Please sign in to comment.