We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afde678 commit 4b02ce3Copy full SHA for 4b02ce3
1 file changed
.github/workflows/main.yml
@@ -8,7 +8,23 @@ on:
8
workflow_dispatch:
9
10
jobs:
11
- build:
+ run-tests:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - id: checkout
15
+ uses: actions/checkout@v3
16
+ - name: Cache
17
+ uses: actions/cache@v4
18
+ with:
19
+ path: |
20
+ ~/.cargo/bin/
21
+ ~/.cargo/registry/index/
22
+ ~/.cargo/registry/cache/
23
+ ~/.cargo/git/db/
24
+ target/
25
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
26
+ - run: cargo test --locked
27
+ build-container:
28
permissions:
29
packages: write
30
runs-on: ubuntu-latest
0 commit comments