-
-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (42 loc) · 1.1 KB
/
msrv.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule: [cron: "40 1 * * *"]
name: Check MSRV of librarium
jobs:
build-test-cpio:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
# msrv of cpio
- 1.72.1
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Populate cache
uses: ./.github/workflows/cache
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo check --locked -p librarium
build-test-librarium-cli:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
# msrv of librarium-cli
- 1.77
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Populate cache
uses: ./.github/workflows/cache
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo check --locked -p librarium-cli