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 300468e commit dbc0defCopy full SHA for dbc0def
.github/workflows/rust.yml
@@ -10,15 +10,19 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- build:
+ style:
14
+ name: style checks
15
runs-on: ubuntu-latest
16
17
steps:
18
- uses: actions/checkout@v3
19
- name: Format
20
run: cargo fmt --check
21
+ - name: Clippy
22
+ run: cargo clippy -- -D warnings
23
24
+ build:
25
+
26
27
28
0 commit comments