File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 28
28
override : true
29
29
- name : Checkout
30
30
uses : actions/checkout@v3
31
+ - name : MSRV dependencies
32
+ if : matrix.rust == '1.66.0'
33
+ run : make msrv-lock
31
34
- name : Check
32
35
env :
33
36
CARGO_BUILD_TARGET : ${{ matrix.target }}
76
79
run : |
77
80
sudo apt-get update
78
81
sudo apt-get install gcc-multilib
79
- - name : Copy MSRV Lock
82
+ - name : MSRV dependencies
83
+ if : matrix.rust == '1.66.0'
80
84
run : make msrv-lock
81
85
- name : Test
82
86
env :
Original file line number Diff line number Diff line change 33
33
@rustup component add clippy 2> /dev/null
34
34
@cargo clippy --examples --tests --all-features -- --deny warnings
35
35
36
+ msrv-lock :
37
+ @cargo update -p once_cell --precise 1.20.3
38
+
36
39
.PHONY : all doc build check test format format-check lint check-minver msrv-lock
You can’t perform that action at this time.
0 commit comments