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 761d61e commit 1f660caCopy full SHA for 1f660ca
.github/workflows/lint.yaml
@@ -0,0 +1,28 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ rustfmt:
13
+ name: Check Rust formatting
14
+ runs-on: ubuntu-latest # OK to run from Linux since it doesn't need to build the code
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - run: cargo fmt --all --check
20
21
+ clippy:
22
+ name: Check Clippy
23
+ runs-on: windows-latest # required to build on Windows due to Windows-only dependencies
24
25
26
27
28
+ - run: cargo clippy --all-features
0 commit comments