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 f96b3da commit 0c230c3Copy full SHA for 0c230c3
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: test
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
+ workflow_call:
8
9
+concurrency:
10
+ group: test-${{ github.head_ref }}
11
+ cancel-in-progress: true
12
13
+env:
14
+ CARGO_TERM_COLOR: always
15
16
+jobs:
17
+ test:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v4
21
22
+ - name: Build
23
+ run: cargo build --verbose
24
25
+ - name: Run tests
26
+ run: cargo test --verbose
0 commit comments