From ac069551d8ee4618b5c1f43a22f293be32abc13a Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 10 Aug 2024 18:20:56 +0100 Subject: [PATCH] chore: simplify just validate-dev-branch task --- justfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index de1327f..efa33b1 100644 --- a/justfile +++ b/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