Skip to content

Commit a1b1059

Browse files
ci: Check MSRV
1 parent cd4f109 commit a1b1059

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,16 @@ jobs:
4545
run: cargo build --verbose --examples --target ${{ matrix.target }}
4646
if: matrix.target != 'x86_64-unknown-linux-gnu'
4747

48+
build-msrv:
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v4
52+
53+
- uses: actions-rs/toolchain@v1
54+
with:
55+
profile: minimal
56+
toolchain: 1.87
57+
override: true
58+
59+
- name: Build
60+
run: cargo build --release --all-features --all-targets

0 commit comments

Comments
 (0)