We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5ad566 commit 4993b34Copy full SHA for 4993b34
.github/workflows/ci.yaml
@@ -21,6 +21,18 @@ jobs:
21
toolchain: ${{ matrix.rust }}
22
profile: minimal
23
override: true
24
+ - uses: actions-rs/cargo@v1
25
+ name: Downgrade bitflags to MSRV
26
+ if: ${{ matrix.rust }} == "1.36.0"
27
+ with:
28
+ command: update
29
+ args: -p bitflags --precise 1.2.1
30
31
+ name: Downgrade indexmap to MSRV
32
33
34
35
+ args: -p indexmap --precise 1.6.2
36
- run: cargo test
37
- run: cargo test --all-features
38
0 commit comments