We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bba201 commit 19c5dedCopy full SHA for 19c5ded
1 file changed
.github/workflows/rust.yml
@@ -49,3 +49,15 @@ jobs:
49
run: cargo build --verbose --no-default-features
50
- name: Run tests
51
run: cargo test --verbose --no-default-features --tests
52
+
53
+ rustfmt:
54
55
+ runs-on: ubuntu-latest
56
57
+ steps:
58
+ - uses: actions/checkout@v4
59
+ - uses: dtolnay/rust-toolchain@stable
60
+ with:
61
+ components: rustfmt
62
+ - name: Run rustfmt check
63
+ run: cargo fmt -- --check
0 commit comments