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 5f16366 commit 50e11b2Copy full SHA for 50e11b2
.github/workflows/ci.yml
@@ -88,3 +88,18 @@ jobs:
88
- name: Run tests
89
run: cargo test -p capnp -p capnpc -p capnp-futures -p capnp-rpc
90
91
+ fmt:
92
+ name: formatting
93
+ runs-on: ubuntu-latest
94
+ steps:
95
+ - uses: actions/checkout@v3
96
+ - uses: actions-rs/toolchain@v1
97
+ with:
98
+ toolchain: nightly
99
+ override: true
100
+ profile: minimal
101
+ components: rustfmt
102
+ - uses: actions-rs/cargo@v1
103
104
+ command: fmt
105
+ args: --all -- --check
.rustfmt.toml
@@ -0,0 +1 @@
1
+format_generated_files = false
0 commit comments