chore: simplify just validate-dev-branch task
All checks were successful
Rust / build (push) Successful in 1m17s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 41s
All checks were successful
Rust / build (push) Successful in 1m17s
ci/woodpecker/push/cron-docker-builder Pipeline was successful
ci/woodpecker/push/push-next Pipeline was successful
ci/woodpecker/push/tag-created Pipeline was successful
Release Please / Release-plz (push) Successful in 41s
This commit is contained in:
parent
f5a3524cb9
commit
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
|
||||
|
||||
validate-dev-branch:
|
||||
git rebase -i origin/main -x 'cargo fmt --check'
|
||||
git rebase -i origin/main -x 'cargo build'
|
||||
git rebase -i origin/main -x 'cargo test'
|
||||
git rebase -i origin/main -x 'cargo clippy'
|
||||
git rebase -i origin/main -x 'just mock-ci'
|
||||
|
||||
mock-ci:
|
||||
cargo fmt --check
|
||||
cargo build
|
||||
cargo test
|
||||
cargo clippy
|
||||
|
||||
start-ngrok:
|
||||
#!/usr/bin/env bash
|
||||
|
|
Loading…
Reference in a new issue