We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c24bab commit 814f0e1Copy full SHA for 814f0e1
.github/workflows/rust.yml
@@ -17,7 +17,6 @@ jobs:
17
- stable
18
- beta
19
- nightly
20
- - 1.60.0
21
os: [ubuntu-20.04]
22
# but only stable on macos/windows (slower platforms)
23
include:
@@ -62,6 +61,25 @@ jobs:
62
61
if: matrix.os == 'macos-latest'
63
run: sudo bash integration-tests/macos.sh
64
+ msrv:
65
+ runs-on: ${{ matrix.os }}
66
+ strategy:
67
+ fail-fast: false
68
+ matrix:
69
+ os: [ubuntu-20.04, macos-latest, windows-latest]
70
+ steps:
71
+ - name: Checkout sources
72
+ uses: actions/checkout@v3
73
+ with:
74
+ persist-credentials: false
75
+
76
+ - name: Install MSRV toolchain
77
+ uses: dtolnay/rust-toolchain@master
78
79
+ toolchain: "1.60"
80
81
+ - run: cargo check --lib --all-features
82
83
format:
84
name: Format
85
runs-on: ubuntu-latest
0 commit comments