Compare commits
1 commit
ddc04d2d0b
...
081ecdba63
Author | SHA1 | Date | |
---|---|---|---|
081ecdba63 |
1 changed files with 4 additions and 7 deletions
11
justfile
11
justfile
|
@ -4,13 +4,10 @@ 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 'just mock-ci'
|
git rebase -i origin/main -x 'cargo fmt --check'
|
||||||
|
git rebase -i origin/main -x 'cargo build'
|
||||||
mock-ci:
|
git rebase -i origin/main -x 'cargo test'
|
||||||
cargo fmt --check
|
git rebase -i origin/main -x 'cargo clippy'
|
||||||
cargo build
|
|
||||||
cargo test
|
|
||||||
cargo clippy
|
|
||||||
|
|
||||||
start-ngrok:
|
start-ngrok:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
Loading…
Reference in a new issue