Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ name: Basic CI

env:
CARGO_TERM_COLOR: always
RUST_MIN_SRV: "1.71.1"

jobs:
check:
Expand Down Expand Up @@ -49,6 +50,19 @@ jobs:
- run: rustup component add clippy
- run: cargo clippy --all-targets -- -D warnings

min_version:
name: Minimum Supported Rust Version
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_MIN_SRV }}
- run: cargo test

coverage:
name: Code Coverage
runs-on: ${{ matrix.job.os }}
Expand Down
Loading
Loading