We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a75547 commit adb207bCopy full SHA for adb207b
1 file changed
.github/workflows/ci.yml
@@ -46,6 +46,22 @@ jobs:
46
--base-ref "${{ github.event.pull_request.base.sha }}" \
47
--head-ref "${{ github.sha }}"
48
49
+ fmt:
50
+ name: cargo fmt
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - name: Checkout
54
+ uses: actions/checkout@v4
55
+
56
+ - name: Install Rust
57
+ uses: dtolnay/rust-toolchain@stable
58
59
+ - name: Rust cache
60
+ uses: Swatinem/rust-cache@v2
61
62
+ - name: Format check
63
+ run: cargo fmt --all --check
64
65
test:
66
name: cargo test (${{ matrix.os }})
67
runs-on: ${{ matrix.os }}
0 commit comments