Skip to content

Commit

Permalink
ci: check only basic features with MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
WanzenBug committed Oct 26, 2024
1 parent cd00455 commit 9399e42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- x86_64-apple-darwin
- x86_64-pc-windows-msvc
toolchain:
- 1.74.0 # MSRV
- 1.64.0 # MSRV
- stable
- nightly
include:
Expand All @@ -37,6 +37,7 @@ jobs:
targets: ${{ matrix.target }}
- name: Run tests
run: cargo test --target ${{ matrix.target }}
if: ${{ matrix.toolchain != '1.64.0' }} # MSRV only needs default features
- name: Run tests (no default features)
run: cargo test --target ${{ matrix.target }} --no-default-features

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "rqrr"
edition = "2021"
rust-version = "1.74.0"
rust-version = "1.64.0"
version = "0.8.0"
authors = ["WanzenBug <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 9399e42

Please sign in to comment.