From 903e8de76c8db1a1ba925156f6bde03e5bd1917b Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Mon, 19 Apr 2021 22:26:03 +0100 Subject: [PATCH] Run the rust workflow in the correct directory --- .github/workflows/rust.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4614ea74..4eddb22f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -39,11 +39,14 @@ jobs: key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ steps.rust_install.outputs.rustc_hash }} - name: install mgba-test-runner - run: cargo install --git https://github.com/corwinkuiper/mgba-test-runner.git - - name: Build + run: cargo install --path mgba-test-runner + - name: Build agb library + working-directory: agb run: cargo build --verbose - - name: Run Clippy + - name: Run Clippy on agb + working-directory: agb run: cargo clippy --verbose - - name: Run Tests + - name: Run Tests for agb + working-directory: agb run: cargo test --verbose \ No newline at end of file