Skip to content

Commit 0ce8e83

Browse files
committed
Fix CI: use actions-rs/toolchain for Rust setup
1 parent 52d8d4f commit 0ce8e83

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ jobs:
2222
run: |
2323
python -m py_compile pytools/summary.py
2424
- name: Set up Rust
25-
uses: actions/setup-rust@v1
25+
uses: actions-rs/toolchain@v1
2626
with:
27-
rust-version: 'stable'
27+
toolchain: stable
28+
override: true
2829
- name: Build Rust parser
2930
run: |
3031
cd parser && cargo build --release

0 commit comments

Comments
 (0)