summaryrefslogtreecommitdiff
path: root/script/check
blob: 87b0459ef97269bc11c3fa9ee048eb3993ab0f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh

set -o errexit
set -o nounset
set -o xtrace

export CARGO_BUILD_WARNINGS=deny

cargo fmt --all --check
cargo check --workspace --all-targets --all-features --keep-going
cargo build --workspace --all-targets --all-features --keep-going
cargo test --workspace --all-targets --all-features
cargo clippy --workspace --all-targets --all-features -- --deny warnings
cargo doc --all-features --no-deps --document-private-items --keep-going
cargo audit

( cd examples &&
  cargo fmt --all --check &&
  cargo check --workspace --all-targets --all-features --keep-going &&
  cargo build --workspace --all-targets --all-features --keep-going &&
  cargo clippy --workspace --all-targets --all-features -- --deny warnings &&
  cargo audit )
Generated by cgit. See skreutz.com for my tech blog and contact information.