diff options
author | Stefan Kreutz <mail@skreutz.com> | 2022-12-19 18:02:18 +0100 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2022-12-19 18:02:18 +0100 |
commit | a7213ed931f2504902c3d7378d4423a9984f8635 (patch) | |
tree | fbfa2fd079407fb55b532ba18bd875e003a1383c /script/check | |
parent | 9f83f904d490e64306f1f288234221aab9d57dd9 (diff) | |
download | parseq-a7213ed931f2504902c3d7378d4423a9984f8635.tar |
Add recursive SHA256 example application
Diffstat (limited to 'script/check')
-rwxr-xr-x | script/check | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/script/check b/script/check index 6737278..b486aee 100755 --- a/script/check +++ b/script/check @@ -10,3 +10,9 @@ 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 ) |