From 36ed7349c0471af02955b2d3564c37b70044d432 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Sun, 26 Nov 2023 11:56:07 +1100 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3b29796..1f7f413 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,6 +9,7 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - run: cargo test + working-directory: bestool audit: name: cargo audits runs-on: ubuntu-latest @@ -18,14 +19,20 @@ jobs: with: components: clippy,rustfmt - run: cargo install cargo-audit + working-directory: bestool - run: cargo install --locked cargo-vet + working-directory: bestool - run: cargo clippy -- -D warnings --no-deps + working-directory: bestool - run: cargo vet --locked + working-directory: bestool - run: cargo audit -D unsound -D yanked -D unmaintained --ignore "RUSTSEC-2020-0168" + working-directory: bestool build: name: cargo build runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - - run: cargo build \ No newline at end of file + - run: cargo build + working-directory: bestool \ No newline at end of file