We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a70cc commit 1651d6cCopy full SHA for 1651d6c
1 file changed
.github/workflows/ci.yml
@@ -21,6 +21,19 @@ jobs:
21
git fetch origin "$BASE_REF"
22
python3 scripts/validate-changelog.py "origin/$BASE_REF"
23
24
+ fmt:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
28
+
29
+ - name: Install Rust
30
+ uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
31
+ with:
32
+ components: rustfmt
33
34
+ - name: Check formatting
35
+ run: cargo fmt --check
36
37
test:
38
runs-on: ubuntu-latest
39
steps:
0 commit comments