From c3a67cd036d68a3a9743a56deab61da4776da314 Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Wed, 22 Jan 2025 12:19:30 +0100 Subject: [PATCH] ci: Minor cleanups --- template/.github/workflows/rust_ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/template/.github/workflows/rust_ci.yml b/template/.github/workflows/rust_ci.yml index 6133ef7..9c06b67 100644 --- a/template/.github/workflows/rust_ci.yml +++ b/template/.github/workflows/rust_ci.yml @@ -10,7 +10,9 @@ on: env: CARGO_TERM_COLOR: always +#IF option("xtensa") GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +#ENDIF jobs: rust-checks: @@ -23,7 +25,7 @@ jobs: - command: build args: --release - command: fmt - args: --all -- --check --color always + args: --all -- --check - command: clippy args: --all-features --workspace -- -D warnings steps: