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 b87a2bf commit a4140feCopy full SHA for a4140fe
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [master]
7
8
+jobs:
9
+ fmt:
10
+ name: Check formatting
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - name: Check Formatting
15
+ run: cargo fmt -- --check
16
17
+ clippy:
18
+ name: Check lints
19
20
21
22
+ with:
23
+ submodules: true
24
+ - name: Clippy
25
+ run: cargo clippy --all --all-targets -- -Dwarnings
.travis.yml
0 commit comments