We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba13b54 commit 3bdd540Copy full SHA for 3bdd540
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+env:
9
+ CARGO_TERM_COLOR: always
10
11
+jobs:
12
+ fmt:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - run: cargo fmt --check
17
18
+ clippy:
19
20
21
22
+ - uses: Swatinem/rust-cache@v2
23
+ - run: cargo clippy --all-targets --all-features -- -D warnings
24
25
+ test:
26
27
28
29
30
+ - run: cargo test --all-features
0 commit comments