Skip to content

Commit

Permalink
chore: run the tests on the version of the matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Jul 15, 2024
1 parent 86d659e commit c376a02
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ jobs:
- name: Install opencl
run: sudo apt-get install -y ocl-icd-opencl-dev
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }}
- run: cargo test --target ${{ matrix.target }} --features portable
- run: cargo +${{ matrix.toolchain }} test --target ${{ matrix.target }}
- run: cargo +${{ matrix.toolchain }} test --target ${{ matrix.target }} --features portable

# macOS tests
macos:
Expand All @@ -116,8 +116,8 @@ jobs:
with:
toolchain: ${{ matrix.toolchain }}
target: x86_64-apple-darwin
- run: cargo test
- run: cargo test --features portable
- run: cargo +${{ matrix.toolchain }} test
- run: cargo +${{ matrix.toolchain }} test --features portable

# Windows tests
windows:
Expand All @@ -137,8 +137,8 @@ jobs:
toolchain: ${{ matrix.toolchain }}
target: ${{ matrix.target }}
- uses: msys2/setup-msys2@v2
- run: cargo test --target ${{ matrix.target }}
- run: cargo test --target ${{ matrix.target }} --features portable
- run: cargo +${{ matrix.toolchain }} test --target ${{ matrix.target }}
- run: cargo +${{ matrix.toolchain }} test --target ${{ matrix.target }} --features portable

clippy_check:
needs: set-msrv
Expand Down

0 comments on commit c376a02

Please sign in to comment.