From 0aced50d66b9cb07f25cc7e24038e1fda5995355 Mon Sep 17 00:00:00 2001 From: Dimitris Zervas Date: Sat, 3 Jun 2023 18:18:40 +0300 Subject: [PATCH] Activate all features on test --- .github/workflows/test.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f47a3f..27ab336 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,12 +13,17 @@ env: jobs: build: - + strategy: + matrix: + os: + - ubuntu-latest + - macos-latest + - windows-latest runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Build - run: cargo build --verbose + run: cargo build --verbose --all-features - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --all-features