We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 117e026 commit 9e0bc0fCopy full SHA for 9e0bc0f
1 file changed
.github/workflows/tests.yml
@@ -23,22 +23,12 @@ jobs:
23
runs-on: ${{ matrix.os }}
24
25
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
+ - uses: actions/checkout@v2
+ - name: Show Cargo and rustc version
+ run: |
+ cargo --version
+ rustc --version
+ - name: Build
+ run: cargo build --all-targets
+ - name: Test
+ run: cargo test --workspace
0 commit comments