2024-11-25 08:13:30 +02:00
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
curl -L https://risczero.com/install | bash
|
|
|
|
|
/home/runner/.risc0/bin/rzup install
|
|
|
|
|
cargo install taplo-cli --locked
|
|
|
|
|
|
|
|
|
|
cargo fmt -- --check
|
2024-11-25 10:37:49 +02:00
|
|
|
|
|
|
|
|
cd accounts
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd consensus
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd mempool
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd networking
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd rpc_primitives
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd sequencer_core
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd sequencer_rpc
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd sequencer_runner
|
2024-11-25 08:13:30 +02:00
|
|
|
cargo clippy --release -- -D warnings
|
2024-11-25 10:37:49 +02:00
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd storage
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
|
|
cd utxo
|
|
|
|
|
cargo clippy --release -- -D warnings
|
|
|
|
|
cd ..
|
|
|
|
|
|
2024-11-25 08:13:30 +02:00
|
|
|
taplo fmt --check
|