Skip to content

Commit 77808b7

Browse files
committed
WIP: Add toolchain matrix to job
1 parent 141b874 commit 77808b7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,16 @@ jobs:
105105
WASM:
106106
name: WASM
107107
runs-on: ubuntu-latest
108+
strategy:
109+
matrix:
110+
toolchain: [stable, beta, nightly, 1.48.0]
108111
steps:
109112
- name: Checkout Crate
110113
uses: actions/checkout@v3
111114
- name: Install clang
112115
run: sudo apt-get install -y clang
113116
- name: Checkout Toolchain
114-
uses: dtolnay/rust-toolchain@stable
117+
uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
115118
- name: Running WASM tests
116119
env:
117120
DO_WASM: true

0 commit comments

Comments
 (0)