Skip to content

Commit 42d82aa

Browse files
CI: Fix test suite running when not needed (#74)
I noticed that #72 had the test suite running, when it definitely shouldn't have needed to.
1 parent 1155710 commit 42d82aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
run-tests:
3939
needs: changes
40-
if: ${{ needs.changes.outputs.source == 'true' || needs.changes.outputs.tests }}
40+
if: ${{ needs.changes.outputs.source == 'true' || needs.changes.outputs.tests == 'true' }}
4141
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
4242
runs-on: ${{ matrix.os }}
4343
strategy:

0 commit comments

Comments
 (0)