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