We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d83ae23 commit 862a4f8Copy full SHA for 862a4f8
1 file changed
.github/workflows/main.yaml
@@ -21,10 +21,19 @@ jobs:
21
- name: Install Rust
22
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
23
- run: cargo test
24
+
25
+ doc_fmt:
26
+ name: Document and check formatting
27
+ runs-on: ubuntu-24.04
28
+ steps:
29
+ - uses: actions/checkout@master
30
+ - name: Install Rust
31
+ run: rustup update nightly && rustup default nightly
32
- run: cargo doc
33
+ - run: cargo fmt --check
34
35
msrv:
- runs-on: ubuntu-latest
36
37
steps:
38
- uses: actions/checkout@master
39
0 commit comments