Skip to content

Commit 7d3fb36

Browse files
committed
chore: Set MSRV for macro (1.68)
1 parent e399648 commit 7d3fb36

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/msrv.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ jobs:
3333
- name: use_msrv_lock_file
3434
run: cp Cargo.lock.msrv Cargo.lock
3535

36+
- name: run_cargo_msrv_for_macro
37+
run: cargo msrv verify --manifest-path ./parameterized-macro/Cargo.toml --output-format json -- cargo check --locked
38+
39+
- name: run_cargo_msrv_on_verify_failure_for_macro
40+
if: ${{ failure() }}
41+
run: cargo msrv find --manifest-path ./parameterized-macro/Cargo.toml --output-format json -- cargo check --locked
42+
3643
- name: run_cargo_msrv
3744
run: cargo msrv verify --output-format json -- cargo check --locked
3845

parameterized-macro/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parameterized-macro"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -10,6 +10,7 @@ repository = "https://github.com/foresterre/parameterized"
1010
readme = "readme.md"
1111
keywords = ["parameterized", "attribute", "test", "unit-test", "junit"]
1212
categories = ["development-tools", "development-tools::testing"]
13+
rust-version = "1.68"
1314

1415
autotests = false
1516

0 commit comments

Comments
 (0)