ci: Remove Rust version from the web CI matrix - it was always stable

This commit is contained in:
TÖRÖK Attila 2024-02-14 11:38:57 +01:00 committed by Nathan Adams
parent 49b3b9d7de
commit 425e38755d
1 changed files with 1 additions and 4 deletions

View File

@ -29,14 +29,12 @@ jobs:
build:
needs: changes
if: needs.changes.outputs.should_run == 'true'
name: Test Node.js ${{ matrix.node_version }} / Rust ${{ matrix.rust_version }} / ${{ matrix.os }}
name: Test Node.js ${{ matrix.node_version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust_version == 'nightly' }}
strategy:
fail-fast: false
matrix:
node_version: ["20", "21"]
rust_version: [stable] # We most likely don't care about Rust versions here, we'll catch those issues in test_rust.yml.
os: [ubuntu-22.04, windows-latest]
steps:
@ -52,7 +50,6 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust_version }}
targets: wasm32-unknown-unknown
- name: Cache Cargo output