We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7fcc97 commit afc692bCopy full SHA for afc692b
1 file changed
.github/workflows/test.yaml
@@ -0,0 +1,20 @@
1
+name: test
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ branches:
7
+ - main
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
17
+ - name: Build
18
+ run: cargo build --all-features --verbose
19
+ - name: Run tests
20
+ run: cargo test --verbose
0 commit comments