We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5cfa9d commit 5fe9575Copy full SHA for 5fe9575
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,30 @@
1
+on:
2
+- push
3
+name: CI
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
+ - uses: dtolnay/rust-toolchain@stable
10
+ - run: cargo build --verbose
11
+ fmt:
12
13
14
15
16
+ - run: cargo fmt --verbose --all --check
17
+ test:
18
19
20
21
22
+ - run: cargo test -- --nocapture
23
+ clippy:
24
25
26
27
28
+ with:
29
+ components: clippy
30
+ - run: cargo clippy --all-targets
0 commit comments