From 61bebd59b980d55f352f226469c14a9d5faae406 Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Wed, 26 Jun 2024 23:43:07 +0200 Subject: [PATCH] ci: Enable feature testing --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a021a81..aa25169 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,14 +14,20 @@ jobs: test: strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: + - ubuntu-latest + - macos-latest + include: + - os: ubuntu-latest + args: --all-features + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - run: rustup update - - run: cargo build - - run: cargo test + - run: cargo build ${{ matrix.args }} + - run: cargo test ${{ matrix.args }} style: runs-on: ubuntu-latest