8
8
fail-fast : false
9
9
matrix :
10
10
version :
11
- - 1.65 .0 # MSRV
11
+ - 1.75 .0 # MSRV
12
12
- stable
13
13
- nightly
14
14
50
50
key : ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
51
51
52
52
- name : Cache cargo tarpaulin
53
- if : matrix.version == '1.65 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
53
+ if : matrix.version == '1.75 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
54
54
uses : actions/cache@v1
55
55
with :
56
56
path : ~/.cargo/bin
@@ -64,19 +64,19 @@ jobs:
64
64
args : --all --all-features --no-fail-fast -- --nocapture
65
65
66
66
- name : Install tarpaulin
67
- if : matrix.version == '1.65 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
67
+ if : matrix.version == '1.75 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
68
68
continue-on-error : true
69
69
run : |
70
70
cargo install cargo-tarpaulin
71
71
72
72
- name : Generate coverage report
73
- if : matrix.version == '1.65 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
73
+ if : matrix.version == '1.75 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
74
74
continue-on-error : true
75
75
run : |
76
76
cargo tarpaulin --out Xml --all --all-features
77
77
78
78
- name : Upload to Codecov
79
- if : matrix.version == '1.65 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
79
+ if : matrix.version == '1.75 .0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
80
80
continue-on-error : true
81
81
uses : codecov/codecov-action@v1
82
82
with :
85
85
- name : Install cargo-cache
86
86
continue-on-error : true
87
87
run : |
88
- cargo install cargo-cache --version 0.6.2 -- no-default-features --features ci-autoclean
88
+ cargo install cargo-cache --no-default-features --features ci-autoclean
89
89
90
90
- name : Clear the cargo caches
91
+ continue-on-error : true
91
92
run : |
92
93
cargo-cache
0 commit comments