diff options
author | pommicket <pommicket@gmail.com> | 2025-09-08 22:01:30 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-08 22:01:30 -0400 |
commit | e3a4ef53a75bc10129010cf18fb7ce68a6acbf2a (patch) | |
tree | 6d7aeabe48ca02f0f83ac6a59178f9b7ca6aadac /pre-commit.sh | |
parent | af57af207e5106a47e50ae1ca6de7f746cfe8da6 (diff) |
Add iter(), more tests
Diffstat (limited to 'pre-commit.sh')
-rwxr-xr-x | pre-commit.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pre-commit.sh b/pre-commit.sh index 603bc0f..82f7404 100755 --- a/pre-commit.sh +++ b/pre-commit.sh @@ -4,4 +4,5 @@ cargo check || exit 1 cargo clippy -- -D warnings || exit 1 # Check that there are no errors with no_std cargo check --target=wasm32-unknown-unknown --no-default-features || exit 1 +cargo test || exit 1 git add -u || exit 1 |