File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 toolchain : stable
2626 override : true
2727
28- # Cache Cargo dependencies
29- - name : Cache Cargo registry
30- uses : actions/cache@v3
31- with :
32- path : ~/.cargo/registry
33- key : ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
34- restore-keys : |
35- ${{ runner.os }}-cargo-registry-
36-
37- - name : Cache Cargo index
38- uses : actions/cache@v3
39- with :
40- path : ~/.cargo/index
41- key : ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
42- restore-keys : |
43- ${{ runner.os }}-cargo-index-
44-
45- - name : Cache Cargo build
46- uses : actions/cache@v3
47- with :
48- path : target
49- key : ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}
50- restore-keys : |
51- ${{ runner.os }}-cargo-build-
52-
5328 - name : Build all examples
5429 run : cargo build --release --all-features --examples
You can’t perform that action at this time.
0 commit comments