Skip to content

Commit

Permalink
Move MSRV checking to a separate step
Browse files Browse the repository at this point in the history
  • Loading branch information
bertptrs committed Jan 18, 2025
1 parent 3c35023 commit 50769b0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
strategy:
matrix:
rust:
- "1.70" # minimum stable rust version
- stable
- beta
- nightly
Expand All @@ -33,6 +32,24 @@ jobs:
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features --all-targets -- -D warnings

msrv:
name: MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly

- run: cargo update -Z minimal-versions

- uses: dtolnay/rust-toolchain@v1
with:
toolchain: "1.70"

- run: cargo test --all-features

docs:
name: Documentation build
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Reworked CI to better test continued support for the minimum supported Rust version

## [0.3.0] - 2023-09-09

### Added
Expand Down

0 comments on commit 50769b0

Please sign in to comment.