From 8225340e5a82cca056c31ddb93026bda589c5b75 Mon Sep 17 00:00:00 2001 From: Shark Date: Mon, 26 Feb 2024 10:52:57 +0100 Subject: [PATCH] CI: fix ci not running on all targets fixes #390 --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e9e6e0c6c..a121339f2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,7 +37,7 @@ jobs: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}-${{ matrix.rust_version }} - name: Build - run: cargo build --verbose + run: cargo build --verbose --all --all-features test: runs-on: ubuntu-latest @@ -68,7 +68,7 @@ jobs: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}-${{ matrix.rust_version }} - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --all --no-fail-fast --all-features clippy: runs-on: ubuntu-latest @@ -120,4 +120,4 @@ jobs: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}-stable - name: Run fmt - run: cargo fmt -- --check + run: cargo fmt --check --all