Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Giersch committed Nov 26, 2022
1 parent 3e349ff commit 4bc74b0
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@v1
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.36.0
components: clippy
- run: cargo check
- run: cargo check --no-default-features
- run: cargo clippy --all-features

test:
Expand All @@ -27,7 +30,8 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [1.36.0, 1.49.0, stable, nightly]
steps:
- uses: dtolnay/rust-toolchain@v1
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.os }}
- run: cargo test --verbose
Expand All @@ -36,7 +40,8 @@ jobs:
miri:
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@v1
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: miri
Expand Down

0 comments on commit 4bc74b0

Please sign in to comment.