Skip to content

Commit

Permalink
mv gen test to linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jwdevantier committed Dec 27, 2024
1 parent 049f938 commit 9a2a6e7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ jobs:
run: ./zig-out/bin/htt tests/tpl/run_tests.lua
- name: Run API unit tests
run: ./zig-out/bin/htt tests/unit/run_tests.lua
- name: Regenerate generated assets
run: ./zig-out/bin/htt build.lua
- name: Check for modified files
run: |
if ! git diff --quiet; then
echo "Error: Generated files are not up to date. Please regenerate files locally and commit changes."
git diff
exit 1
fi
test-windows:
needs: test-linux
Expand All @@ -48,15 +57,6 @@ jobs:
- name: Run API unit tests
shell: bash
run: ./zig-out/bin/htt.exe tests/unit/run_tests.lua
- name: Regenerate generated assets
run: ./zig-out/bin/htt build.lua
- name: Check for modified files
run: |
if ! git diff --quiet; then
echo "Error: Generated files are not up to date. Please regenerate files locally and commit changes."
git diff
exit 1
fi

test-macos:
needs: test-linux
Expand Down

0 comments on commit 9a2a6e7

Please sign in to comment.