From 61a33ce9dcb6b6ac09ba618a5fa5f14bb0e79c8f Mon Sep 17 00:00:00 2001 From: Ryan Tan Date: Wed, 24 Jul 2024 23:56:35 +0800 Subject: [PATCH] chore: make ci run on windows --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7141e8aa..250df625 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,6 @@ jobs: strategy: fail-fast: false matrix: - # TODO: add windows which does not support container os: [ ubuntu-24.04 ] runs-on: ${{ matrix.os }} container: @@ -77,6 +76,13 @@ jobs: path: ./cov-reports if-no-files-found: 'error' + rust-tests-windows: + runs-on: windows-2025 + steps: + - uses: actions/checkout@v5 + - name: Run unit tests on Windows with no coverage report + run: cargo test --no-fail-fast --all-targets --all-features --workspace + python-tests: strategy: fail-fast: false