Skip to content

Commit 8b8fc34

Browse files
authored
Merge pull request #213 from tottoto/resolve-msrv-aware-dependencies
Resolve MSRV aware dependencies
2 parents 649b97a + 9575eb3 commit 8b8fc34

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/linters.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@v1
30+
- uses: actions-rs/toolchain@v1
31+
with:
32+
toolchain: stable
33+
profile: minimal
34+
override: true
35+
- name: Resolve MSRV aware dependencies
36+
run: cargo update
37+
env:
38+
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: fallback
3039
- uses: actions-rs/toolchain@v1
3140
with:
3241
toolchain: 1.70.0

.github/workflows/tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v1
17+
- uses: actions-rs/toolchain@v1
18+
with:
19+
toolchain: stable
20+
profile: minimal
21+
override: true
22+
- name: Resolve MSRV aware dependencies
23+
run: cargo update
24+
env:
25+
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: fallback
1726
- uses: actions-rs/toolchain@v1
1827
with:
1928
toolchain: 1.70.0

0 commit comments

Comments
 (0)