forked from microsoft/Windows-rust-driver-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (34 loc) · 973 Bytes
/
Copy pathcode-formatting-check.yaml
File metadata and controls
43 lines (34 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Code Formatting Check
on:
push:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: 0 11 * * *
jobs:
cargo-fmt:
name: .rs Formatting Check
runs-on: windows-2025
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Toolchain (Nightly)
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Run Cargo Format
run: cargo +nightly fmt --all -- --check
taplo-fmt:
name: .toml Formatting Check
runs-on: windows-2025
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Toolchain (Stable)
uses: dtolnay/rust-toolchain@stable
- name: Install taplo-cli
uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- run: taplo fmt --check --diff
name: Check TOML files formatting