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