Skip to content

Commit

Permalink
🐛 fix ci tests workflow always skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
bart-maykin committed May 22, 2024
1 parent 10ea618 commit c762353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- changed-files

# only run tests if source files have changed (e.g. skip for PRs that only update docs)
if: ${{ needs.changed-files.outputs.changed-py-files == 'true'|| needs.changed-files.outputs.changed-requirements == 'true'|| github.event_name == 'push' }}
if: ${{ needs.changed-files.outputs.changed-py-files == 'true'|| needs.changed-files.outputs.changed-requirements == 'true'|| github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}

strategy:
matrix:
Expand Down

0 comments on commit c762353

Please sign in to comment.