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