Skip to content

Update test.yml

Update test.yml #2

Workflow file for this run

name: test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- run: cargo install cargo-audit && cargo install --locked cargo-vet
- run: cargo test --all-features
- run: cargo clippy -- -D warnings --no-deps
- run: cargo vet --locked
- run: cargo audit -D unsound -D yanked -D unmaintained --ignore "RUSTSEC-2020-0168"
- run: cargo build