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 381f414 commit 1d5c8fcCopy full SHA for 1d5c8fc
.github/workflows/ci.yml
@@ -19,3 +19,25 @@ jobs:
19
20
- name: Test Rust
21
run: cargo test
22
+
23
+ rustfmt:
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - uses: actions/checkout@v2
27
28
+ - name: Cache Rust
29
+ uses: Swatinem/rust-cache@v1
30
31
+ - run: cargo fmt --all --check
32
33
+ toml_validation:
34
35
+ container:
36
+ image: tamasfe/taplo:0.8.1
37
38
+ - name: Checkout sources
39
+ uses: actions/checkout@v4
40
+ - name: taplo lint
41
+ run: taplo lint
42
+ - name: taplo fmt
43
+ run: taplo fmt --check --diff
0 commit comments