Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit 43f9654

Browse files
committed
Fix workflow
1 parent 9230f1f commit 43f9654

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
runs-on: ${{ matrix.os }}
4040
steps:
4141
- uses: actions/checkout@v3
42+
- name: update-rustup
43+
run: rustup update stable
4244
- uses: taiki-e/upload-rust-binary-action@v1
4345
with:
4446
bin: els

.github/workflows/rust.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- uses: Swatinem/rust-cache@v2
2020
- name: Build
21-
run: cargo build --verbose
21+
run: |
22+
rustup update stable
23+
cargo build --verbose
2224
- name: Run tests
2325
run: cargo test --verbose
2426
- uses: actions-rs/cargo@v1

0 commit comments

Comments
 (0)