We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f28edd commit da322dcCopy full SHA for da322dc
.github/workflows/tests.yml
@@ -78,3 +78,23 @@ jobs:
78
- uses: taiki-e/install-action@cargo-hack
79
- name: clippy (all targets, feature powerset)
80
run: cargo hack clippy --all-targets --feature-powerset -- -D warnings
81
+
82
+ msrv:
83
+ name: Verify MSRV
84
+ runs-on: ubuntu-latest
85
+ strategy:
86
+ matrix:
87
+ rust:
88
+ - stable
89
+ steps:
90
+ - uses: actions/checkout@v4
91
+ - uses: dtolnay/rust-toolchain@v1
92
+ with:
93
+ toolchain: ${{ matrix.rust }}
94
+ - name: Install cargo-msrv
95
+ uses: baptiste0928/cargo-install@v2
96
97
+ crate: cargo-msrv
98
+ - uses: taiki-e/install-action@cargo-hack
99
+ - name: verify msrv
100
+ run: cargo msrv verify -- cargo hack --feature-powerset
0 commit comments