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

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Nov 17, 2022
1 parent 9230f1f commit 43f9654
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: update-rustup
run: rustup update stable
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: els
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
run: |
rustup update stable
cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions-rs/cargo@v1
Expand Down

0 comments on commit 43f9654

Please sign in to comment.