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 ee0d23b commit a1bb86eCopy full SHA for a1bb86e
.github/workflows/main.yml
@@ -0,0 +1,39 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+
8
+jobs:
9
+ test:
10
+ name: Tests
11
+ runs-on: ubuntu-latest
12
+ env:
13
+ CARGO_TERM_COLOR: always
14
+ steps:
15
+ - uses: actions/checkout@v5
16
+ - name: Build
17
+ run: cargo build --verbose
18
+ - name: Run tests
19
+ run: cargo test --verbose
20
21
+ clippy:
22
+ name: Clippy
23
24
25
26
+ - name: Clippy
27
+ run: cargo clippy --all-targets
28
29
+ pre-commit:
30
+ name: Pre-Commit
31
32
33
+ - name: Checkout code
34
+ uses: actions/checkout@v5
35
36
+ - name: Run pre-commit
37
+ uses: pre-commit/action@v3.0.1
38
39
+ SKIP: clippy
0 commit comments