Skip to content

Commit

Permalink
Execute cargo from root
Browse files Browse the repository at this point in the history
  • Loading branch information
MGibson1 committed Sep 19, 2024
1 parent 37949a9 commit f74146c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/language-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ jobs:
- name: Set up run data
run: |
cd $GITHUB_WORKSPACE/languages/language_tests
cargo run setup
cargo build --release -p language-tests
./target/release/language_tests setup
- name: Run language tests
run: |
Expand All @@ -131,5 +131,6 @@ jobs:
- name: Tear down run data
if: always()
run: |
cd $GITHUB_WORKSPACE/languages/language_tests
cargo run teardown
cd $GITHUB_WORKSPACE
cargo build --release -p language-tests
./target/release/language_tests teardown

0 comments on commit f74146c

Please sign in to comment.