Skip to content

Commit 06bf59b

Browse files
Merge pull request #212 from matthiasbeyer/msrv-ci
MSRV on CI
2 parents dccc08a + 7c3ec71 commit 06bf59b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/msrv.yml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
rust:
12+
- 1.44.0
1213
- stable
1314
- beta
1415
- nightly
@@ -43,6 +44,7 @@ jobs:
4344
strategy:
4445
matrix:
4546
rust:
47+
- 1.44.0
4648
- stable
4749
- beta
4850
- nightly

tests/env.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ fn test_parse_bool() {
184184

185185
assert!(matches!(
186186
config,
187-
TestBoolEnum::Bool(TestBool { bool_val: true }),
187+
TestBoolEnum::Bool(TestBool { bool_val: true })
188188
));
189189

190190
env::remove_var("BOOL_VAL");

0 commit comments

Comments
 (0)