summaryrefslogtreecommitdiff
path: root/release-hook.sh
blob: 4934933793c4cd70d27f1a9500ff3ef1d88c06b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Error out if any command fails
set -e

typos
cargo upgrades

# Similar to CI
cargo clippy -- --deny warnings
cargo fmt --all --check
cargo test --workspace
cargo dev check --require-solutions

# MSRV
cargo +1.88 dev check --require-solutions