From 0c295b4bc7666a8aaa767b78ee928c93182cf435 Mon Sep 17 00:00:00 2001 From: Manuel Raimann Date: Wed, 11 Feb 2026 23:03:38 +0100 Subject: [PATCH] ci: simplify test command by removing feature matrix --- .github/workflows/ci.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c52ea9..f1abc86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,11 +42,6 @@ jobs: test: name: Test runs-on: ubuntu-latest - strategy: - matrix: - features: - - "" - - "async" steps: - uses: actions/checkout@v6 - name: Install Rust @@ -55,12 +50,7 @@ jobs: rustup update stable - uses: Swatinem/rust-cache@v2 - name: Run tests - run: | - if [ -z "${{ matrix.features }}" ]; then - cargo test --verbose - else - cargo test --verbose --features "${{ matrix.features }}" - fi + run: cargo test --verbose --all-features --all-targets examples: name: Examples