From dd82fae7402f4c4b2139dad7ceb7f79af038d215 Mon Sep 17 00:00:00 2001 From: Danyal Prout Date: Thu, 4 Dec 2025 21:03:10 -0600 Subject: [PATCH] chore: add zepter to ci --- Justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Justfile b/Justfile index 6e2c15a5..57ae0982 100644 --- a/Justfile +++ b/Justfile @@ -13,7 +13,7 @@ default: @just --list # Runs all ci checks. -ci: fix check lychee +ci: fix check lychee zepter # Performs lychee checks, installing the lychee command if necessary lychee: @@ -24,7 +24,7 @@ lychee: check: check-format check-clippy test # Fixes formatting and clippy issues -fix: fix-format fix-clippy +fix: format-fix clippy-fix zepter-fix # Runs zepter feature checks, installing zepter if necessary zepter: @@ -51,7 +51,7 @@ check-format: cargo +nightly fmt --all -- --check # Fixes any formatting issues -fix-format: +format-fix: cargo fix --allow-dirty --allow-staged cargo +nightly fmt --all @@ -60,7 +60,7 @@ check-clippy: cargo clippy --all-targets -- -D warnings # Fixes any clippy issues -fix-clippy: +clippy-fix: cargo clippy --all-targets --fix --allow-dirty --allow-staged # Builds the workspace with release