We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a21ca7d commit eb02de3Copy full SHA for eb02de3
1 file changed
.github/workflows/continuous_deployment.yml
@@ -16,7 +16,12 @@ jobs:
16
runs-on: ubuntu-latest
17
steps:
18
- uses: actions/checkout@v2
19
- - run: cargo fmt --all -- --check
+
20
+ - name: Install rustfmt component
21
+ run: rustup component add --toolchain 1.77.2-x86_64-unknown-linux-gnu rustfmt
22
23
+ - name: Check code formatting
24
+ run: cargo fmt --all -- --check
25
26
release:
27
needs: [test, format]
0 commit comments