Skip to content

Commit 461de8d

Browse files
Moving test workflows out of test_workflows/ subdirectory because not allowed by Github
1 parent e66df51 commit 461de8d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ jobs:
3535
fi
3636
3737
# Dummy job that always passes when no code/tests changed
38-
skip_tests:
38+
skip-tests:
3939
needs: check-for-changes-in-important-files
4040
if: ${{ needs.check-for-changes-in-important-files.outputs.run_full_tests == 'false' }}
41-
uses: ./.github/workflows/test_workflows/skip_tests.yml
41+
uses: ./.github/workflows/skip_tests.yml
4242

4343
# Call Ubuntu testing workflow
44-
test_ubuntu:
44+
test-ubuntu:
4545
needs: check-for-changes-in-important-files
4646
if: ${{ needs.check-for-changes-in-important-files.outputs.run_full_tests == 'true' }}
47-
uses: ./.github/workflows/test_workflows/test_ubuntu.yml
47+
uses: ./.github/workflows/test_ubuntu.yml
4848

4949
# Call macOS testing workflow
50-
test_macos:
50+
test-macos:
5151
needs: check-for-changes-in-important-files
5252
if: ${{ needs.check-for-changes-in-important-files.outputs.run_full_tests == 'true' }}
53-
uses: ./.github/workflows/test_workflows/test_macos.yml
53+
uses: ./.github/workflows/test_macos.yml

0 commit comments

Comments
 (0)