Skip to content

Commit

Permalink
ci: update ci tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
kruserr committed Oct 17, 2024
1 parent cf0c979 commit c1596ca
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions tooling/ci.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
#!/usr/bin/env bash

# Deps
# cargo install --locked cargo-audit cargo-edit cargo-udeps cargo-geiger cargo-crev cargo-deny

set -Eeuo pipefail

cargo +nightly fmt --all
cargo clippy --all-targets --all-features -- -Dwarnings
cargo test
ci () {

cargo audit
cargo upgrade --verbose
cargo update --verbose

cargo +nightly fmt --all
cargo clippy --all-targets --all-features -- -Dwarnings
cargo test

cargo +nightly udeps --all-targets
}

ci

0 comments on commit c1596ca

Please sign in to comment.