File tree Expand file tree Collapse file tree 1 file changed +9
-19
lines changed
Expand file tree Collapse file tree 1 file changed +9
-19
lines changed Original file line number Diff line number Diff line change @@ -23,22 +23,12 @@ jobs:
2323 runs-on : ${{ matrix.os }}
2424
2525 steps :
26- - uses : actions/checkout@v2
27- - name : Show Cargo and rustc version
28- run : |
29- cargo --version
30- rustc --version
31- - name : Cache Cargo
32- uses : actions/cache@v2
33- with :
34- path : |
35- ~/.cargo/registry
36- ~/.cargo/git
37- target
38- key : cargo-${{ runner.os }}-${{ hashFiles('Cargo.lock') }}
39- restore-keys : |
40- cargo-${{ runner.os }}-
41- - name : Build
42- run : cargo build --all-targets
43- - name : Test
44- run : cargo test --workspace
26+ - uses : actions/checkout@v2
27+ - name : Show Cargo and rustc version
28+ run : |
29+ cargo --version
30+ rustc --version
31+ - name : Build
32+ run : cargo build --all-targets
33+ - name : Test
34+ run : cargo test --workspace
You can’t perform that action at this time.
0 commit comments