Skip to content

Commit

Permalink
fix pr pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
lubomirkurcak committed May 8, 2024
1 parent 4130f81 commit f54d902
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,24 @@ jobs:
- ubuntu-latest
- windows-latest
- macos-latest
toolchain:
rust:
- stable
- nightly

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@#{{ matrix.toolchain }}
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}

- name: Test
run: cargo test

- name: Test (Release)
run: cargo test --release

0 comments on commit f54d902

Please sign in to comment.