summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-06-08 22:23:18 +0200
committerGitHub <noreply@github.com>2021-06-08 22:23:18 +0200
commit06bf59b799db5d2c66f605829d08d624c9b60129 (patch)
tree283ebe5e81ac8a7665daa07066c239d0d47a069a
parentdccc08a22cb2d1b53d823e217fd3c6a86b80e366 (diff)
parent7c3ec71d45c48314cde3c0e6d9de1e1ff893d796 (diff)
Merge pull request #212 from matthiasbeyer/msrv-ci
MSRV on CI
-rw-r--r--.github/workflows/msrv.yml2
-rw-r--r--tests/env.rs2
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 1cbbaff..17bed76 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -9,6 +9,7 @@ jobs:
strategy:
matrix:
rust:
+ - 1.44.0
- stable
- beta
- nightly
@@ -43,6 +44,7 @@ jobs:
strategy:
matrix:
rust:
+ - 1.44.0
- stable
- beta
- nightly
diff --git a/tests/env.rs b/tests/env.rs
index 560ec3b..4d1a966 100644
--- a/tests/env.rs
+++ b/tests/env.rs
@@ -184,7 +184,7 @@ fn test_parse_bool() {
assert!(matches!(
config,
- TestBoolEnum::Bool(TestBool { bool_val: true }),
+ TestBoolEnum::Bool(TestBool { bool_val: true })
));
env::remove_var("BOOL_VAL");