Compare commits
2 commits
081ecdba63
...
ddc04d2d0b
Author | SHA1 | Date | |
---|---|---|---|
ddc04d2d0b | |||
ac069551d8 |
1 changed files with 7 additions and 4 deletions
11
justfile
11
justfile
|
@ -4,10 +4,13 @@ install-hooks:
|
||||||
git config core.hooksPath .git-hooks
|
git config core.hooksPath .git-hooks
|
||||||
|
|
||||||
validate-dev-branch:
|
validate-dev-branch:
|
||||||
git rebase -i origin/main -x 'cargo fmt --check'
|
git rebase -i origin/main -x 'just mock-ci'
|
||||||
git rebase -i origin/main -x 'cargo build'
|
|
||||||
git rebase -i origin/main -x 'cargo test'
|
mock-ci:
|
||||||
git rebase -i origin/main -x 'cargo clippy'
|
cargo fmt --check
|
||||||
|
cargo build
|
||||||
|
cargo test
|
||||||
|
cargo clippy
|
||||||
|
|
||||||
start-ngrok:
|
start-ngrok:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
Loading…
Reference in a new issue