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 2abf705 commit 4f9a8d7Copy full SHA for 4f9a8d7
2 files changed
.github/workflows/clippy.yml
@@ -0,0 +1,14 @@
1
+name: Format
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ clippy:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ with:
11
+ submodules: true
12
+ - run: rustup component add clippy
13
+ - run: cargo nbuild clippy
14
.github/workflows/format.yml
@@ -3,16 +3,11 @@ name: Format
on: [push, pull_request]
jobs:
- run_cargo_fmt:
- name: Run cargo fmt
+ format:
runs-on: ubuntu-latest
steps:
- - name: Checkout
- uses: actions/checkout@v4
with:
submodules: true
- - name: Add Tool
15
- run: rustup component add rustfmt
16
- - name: Check Format
17
- run: cargo nbuild format --check
18
-
+ - run: rustup component add rustfmt
+ - run: cargo nbuild format --check
0 commit comments