From 3a42130518c143f8fa794d7b937b962147e2fbfd Mon Sep 17 00:00:00 2001 From: Christian Nennemann Date: Wed, 4 Mar 2026 13:31:32 +0100 Subject: [PATCH] chore(ci): enforce clippy -D warnings, add v2 branch trigger --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40a1db9..c25ff47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [main, master] + branches: [main, master, v2] pull_request: - branches: [main, master] + branches: [main, master, v2] env: CARGO_TERM_COLOR: always @@ -45,7 +45,7 @@ jobs: run: cargo test --workspace - name: Clippy - run: cargo clippy --workspace --all-targets -- + run: cargo clippy --workspace --all-targets -- -D warnings deny: name: cargo-deny @@ -102,8 +102,6 @@ jobs: - name: Run coverage run: | cargo tarpaulin --workspace \ - --exclude quicproquo-gui \ - --exclude quicproquo-mobile \ --exclude quicproquo-p2p \ --out xml \ --output-dir coverage/ \