Skip to content

Commit

Permalink
Fix binary path in test script
Browse files Browse the repository at this point in the history
  • Loading branch information
TheQuantumPhysicist committed Oct 4, 2024
1 parent 14ea611 commit 5756b7a
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 105 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Run tests
run: cargo test --verbose
- name: Tests in terminal
run: bash test-tools/run-cmd-tests.sh
run: bash ./test-tools/run-cmd-tests.sh

build_macos:
runs-on: macos-latest
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Run tests
run: cargo test --verbose
- name: Tests in terminal
run: bash test-tools/run-cmd-tests.sh
run: bash ./test-tools/run-cmd-tests.sh

build_windows:
runs-on: windows-latest
Expand All @@ -47,4 +47,4 @@ jobs:
run: cargo test --verbose
- name: Tests in terminal
shell: bash
run: ./test-tools/run-cmd-tests.sh
run: bash ./test-tools/run-cmd-tests.sh
Loading

0 comments on commit 5756b7a

Please sign in to comment.