Skip to content

Commit 4d59aa3

Browse files
authored
Merge pull request #71 from Gankra/msrv
CI: Add MSRV job
2 parents bc39531 + ecff328 commit 4d59aa3

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/rust.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,16 @@ jobs:
4646
- name: Run tests (no_std)
4747
run: cargo test --tests --no-default-features --verbose
4848

49+
msrv:
50+
runs-on: ubuntu-latest
51+
steps:
52+
- uses: actions/checkout@v2
53+
- uses: actions-rs/toolchain@v1
54+
with:
55+
toolchain: 1.53
56+
override: true
57+
- run: cargo +1.53 check
58+
4959
fmt:
5060
runs-on: ubuntu-latest
5161
steps:

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ license = "MIT/Apache-2.0"
88
repository = "https://github.com/gankra/thin-vec"
99
homepage = "https://github.com/gankra/thin-vec"
1010
readme = "README.md"
11+
rust-version = "1.53"
1112

1213
[features]
1314
unstable = []

0 commit comments

Comments
 (0)