GitHub actions update

This commit is contained in:
Abdulla Abdurakhmanov 2022-07-26 16:02:21 +02:00
parent cbe014fa2e
commit 9aa9fb9331
No known key found for this signature in database
GPG key ID: FCDF08B0ECE6E69B
2 changed files with 10 additions and 4 deletions

View file

@ -11,6 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: icepuma/rust-action@master
- uses: actions-rs/toolchain@v1
with:
args: cargo install cargo-audit && cargo audit || true && cargo audit --ignore RUSTSEC-2020-0159 --ignore RUSTSEC-2020-0071
profile: minimal
toolchain: stable
components: rustfmt, clippy
- run: cargo install cargo-audit && cargo audit || true && cargo audit --ignore RUSTSEC-2020-0159 --ignore RUSTSEC-2020-0071

View file

@ -8,6 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: icepuma/rust-action@master
- uses: actions-rs/toolchain@v1
with:
args: cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test
profile: minimal
toolchain: stable
components: rustfmt, clippy
- run: cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test