Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

if ! command -v cargo-make >/dev/null 2>&1; then
echo "cargo-make is not installed. Install it with:"
echo " cargo install cargo-make"
exit 1
fi

cargo make run-ci
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ futures-channel = "0.3.32"
aligned-vec = "0.6.4"
temp-env = "0.3.6"
strum = { version = "0.28", features = ["derive"] }
husky-rs = "0.3.2"

# ICU4X

Expand Down
1 change: 1 addition & 0 deletions core/engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ float-cmp.workspace = true
indoc.workspace = true
textwrap.workspace = true
test-case.workspace = true
husky-rs.workspace = true

[target.x86_64-unknown-linux-gnu.dev-dependencies]
jemallocator.workspace = true
Expand Down
Loading