Skip to content

Commit

Permalink
Only check libraries against MSRV (from #1558)
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Sep 20, 2023
1 parent e97b12d commit 60fb3c4
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/rust.yml
Expand Up @@ -36,16 +36,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 @@ -70,6 +66,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 60fb3c4

Please sign in to comment.