Skip to content

Commit

Permalink
Explicitly install Rust toolchain in GitHub test action
Browse files Browse the repository at this point in the history
  • Loading branch information
jmacdonald committed Nov 24, 2024
1 parent bf54c72 commit 6ed0ce0
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
- name: Checkout code
uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: rust-src

- name: Run tests
run: cargo test --verbose

0 comments on commit 6ed0ce0

Please sign in to comment.