Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
TrentHouliston committed Sep 15, 2023
1 parent 93f2a1c commit 73cfd62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
build/tests/test_nuclear
for f in build/tests/individual/*; do echo "Testing $f"; ./$f -s; done
for f in build/tests/individual/*; do echo "Testing $f"; ./$f; done
build-osx:
name: MacOS Clang
Expand All @@ -87,7 +87,7 @@ jobs:
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
build/tests/test_nuclear
for f in build/tests/individual/*; do echo "Testing $f"; ./$f -s; done
for f in build/tests/individual/*; do echo "Testing $f"; ./$f; done
build-windows:
name: Windows MSVC
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: |
build/tests/Release/test_nuclear.exe
for f in build/tests/individual/Release/*; do echo "Testing $f"; ./$f -s; done
for f in build/tests/individual/Release/*; do echo "Testing $f"; ./$f; done
shell: bash

check-clang-tidy-linux:
Expand Down

0 comments on commit 73cfd62

Please sign in to comment.