Skip to content

Commit

Permalink
Merge branch 'main' into s2n-quic-2
Browse files Browse the repository at this point in the history
# Conflicts:
#	Cargo.lock
#	Cargo.toml
#	src/transport/mod.rs
  • Loading branch information
rklaehn committed Feb 17, 2023
2 parents d18d6b4 + 0c7fbc9 commit 87d4441
Show file tree
Hide file tree
Showing 35 changed files with 2,565 additions and 1,701 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:

env:
CARGO_TERM_COLOR: always
MSRV: "1.63"
RUST_BACKTRACE: 1

jobs:
build:
Expand All @@ -30,3 +32,17 @@ jobs:
run: cargo build --locked --verbose
- name: Run tests
run: cargo test --all-features --locked --verbose

msrv:
name: Minimal Supported Rust Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "${{ env.MSRV }}"
override: true
- name: Check MSRV all features
run: |
cargo +$MSRV check --workspace --all-targets --no-default-features
Loading

0 comments on commit 87d4441

Please sign in to comment.