diff options
author | Stefan Kreutz <mail@skreutz.com> | 2024-03-24 15:04:09 +0100 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2024-03-24 15:04:09 +0100 |
commit | c1fa48e9bd617d70e823efef5d6dcea41b1d2087 (patch) | |
tree | 421e69c512ac54bf65495ef23fd7d9ec5a5e67d5 /script | |
download | brck-0.1.0.tar |
Add initial implementationbrck-0.1.0
Diffstat (limited to 'script')
-rwxr-xr-x | script/check | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/script/check b/script/check new file mode 100755 index 0000000..edf251e --- /dev/null +++ b/script/check @@ -0,0 +1,15 @@ +#! /bin/sh + +set -o errexit +set -o nounset +set -o xtrace + +cargo fmt --all --check + +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 +env RUSTDOCFLAGS="-Dwarnings" \ + cargo doc --all-features --no-deps --document-private-items +cargo audit |