Skip to content

Commit 23d2bdb

Browse files
committed
fix: Add required toolchain parameter to rust-toolchain action
The dtolnay/rust-toolchain action requires a 'toolchain' parameter (e.g., stable, nightly). Added 'toolchain: stable' to both test and benchmarks jobs. Previous error: 'toolchain' is a required input Error: Process completed with exit code 1 Fixed in: - test job (line 36) - benchmarks job (line 235)
1 parent d118724 commit 23d2bdb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- name: Setup Rust (for WASM)
3434
uses: dtolnay/rust-toolchain@0b1efabc08b657293548b77fb76cc02d26091c7e # master 2025-11-30
3535
with:
36+
toolchain: stable
3637
targets: wasm32-unknown-unknown
3738

3839
- name: Install ReScript
@@ -231,6 +232,7 @@ jobs:
231232
- name: Setup Rust
232233
uses: dtolnay/rust-toolchain@0b1efabc08b657293548b77fb76cc02d26091c7e # master 2025-11-30
233234
with:
235+
toolchain: stable
234236
targets: wasm32-unknown-unknown
235237

236238
- name: Install ReScript

0 commit comments

Comments
 (0)