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

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

cargo check --workspace --all-targets --all-features
cargo build --workspace --all-targets --all-features
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
cargo audit

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