We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dabecf2 commit 855c9b1Copy full SHA for 855c9b1
1 file changed
.github/workflows/tools-tests.yml
@@ -0,0 +1,29 @@
1
+name: tools-tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+jobs:
9
+ rust-tests:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: "Checkout"
13
+ uses: actions/checkout@v3
14
+ - name: "Cache"
15
+ uses: actions/cache@v3
16
+ with:
17
+ path: |
18
+ ~/.cargo/bin/
19
+ ~/.cargo/registry/index/
20
+ ~/.cargo/registry/cache/
21
+ ~/.cargo/git/db/
22
+ ./target/
23
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
24
+ - name: "Rust toolchain"
25
+ uses: actions-rs/toolchain@v1
26
27
+ toolchain: stable
28
+ - name: "Test"
29
+ run: cargo test
0 commit comments