Skip to content

Commit 1972e38

Browse files
authored
Auto merge of #611 - jrmuizel:msrv, r=mstange
Add MSRV check to CI None
2 parents 8f7400b + e3995c6 commit 1972e38

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/rust.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,17 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- name: Check semver
1818
uses: obi1kenobi/cargo-semver-checks-action@v2
19+
msrv:
20+
runs-on: macos-11.0
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Install toolchain
24+
uses: actions-rs/toolchain@v1
25+
with:
26+
toolchain: 1.56.1
27+
override: true
28+
- name: Build
29+
run: cargo build --verbose
1930
build:
2031
runs-on: ${{ matrix.os }}
2132
strategy:

0 commit comments

Comments
 (0)