Skip to content

Commit eb02de3

Browse files
committed
Fix broken format runner
1 parent a21ca7d commit eb02de3

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/continuous_deployment.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v2
19-
- run: cargo fmt --all -- --check
19+
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
2025

2126
release:
2227
needs: [test, format]

0 commit comments

Comments
 (0)