Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralim committed Nov 26, 2023
1 parent 2dac964 commit 36ed734
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
- run: cargo build
working-directory: bestool

0 comments on commit 36ed734

Please sign in to comment.