Use cargo-fmt
's --check
flag
#175
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
all: | |
name: All | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: "--deny warnings" | |
defaults: | |
run: | |
working-directory: tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Rust Toolchain Info | |
run: | | |
rustc --version | |
cargo --version | |
cargo clippy --version | |
cargo fmt --version | |
- uses: Swatinem/rust-cache@640a22190e7a783d4c409684cea558f081f92012 | |
with: | |
workspaces: ./tests -> target | |
- name: Build | |
run: cargo build --workspace | |
- name: Clippy | |
run: cargo clippy --all-targets --all-features | |
- name: Check Formatting | |
run: cargo fmt --all --check | |
- name: Test | |
run: | | |
cargo run | |
cargo run --bin=test-ftdetect |