Skip to content

Commit

Permalink
Only check libraries against MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed May 9, 2023
1 parent 9827071 commit 9550d86
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/rust.yml
Expand Up @@ -34,16 +34,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable, beta, 1.63.0]
rust: [stable, beta]
exclude:
- os: macos-latest
rust: beta
- os: macos-latest
rust: 1.63.0
- os: windows-latest
rust: beta
- os: windows-latest
rust: 1.63.0

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

Expand All @@ -68,6 +64,21 @@ jobs:
command: test
args: --manifest-path fuzz/Cargo.toml

msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.63.0
override: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: check
args: --lib --all-features -p quinn-udp -p quinn-proto -p quinn

lint:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 9550d86

Please sign in to comment.