We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141b874 commit 77808b7Copy full SHA for 77808b7
.github/workflows/rust.yml
@@ -105,13 +105,16 @@ jobs:
105
WASM:
106
name: WASM
107
runs-on: ubuntu-latest
108
+ strategy:
109
+ matrix:
110
+ toolchain: [stable, beta, nightly, 1.48.0]
111
steps:
112
- name: Checkout Crate
113
uses: actions/checkout@v3
114
- name: Install clang
115
run: sudo apt-get install -y clang
116
- name: Checkout Toolchain
- uses: dtolnay/rust-toolchain@stable
117
+ uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
118
- name: Running WASM tests
119
env:
120
DO_WASM: true
0 commit comments