diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82520b8..7a7aa08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,17 @@ jobs: run: cargo clippy --all-features wgpu-validation: - runs-on: windows-latest + strategy: + fail-fast: false + matrix: + include: + - label: Windows + platform: windows-latest + - label: macOS + platform: macos-latest + + name: wgpu validation (${{ matrix.label }}) + runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v3