Skip to content

Commit

Permalink
Fix command in if block
Browse files Browse the repository at this point in the history
  • Loading branch information
albrja committed Oct 25, 2023
1 parent 7070272 commit 3f68925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
isort . --check --verbose --only-modified --diff
- name: Test
run: |
if github.event_name == 'schedule'; then
if [ ${{ github.event_name }} == 'push']; then
pytest --runslow ./tests
else
pytest --limit=1 ./tests
Expand Down

0 comments on commit 3f68925

Please sign in to comment.