Skip to content

chore: Add CI checks #1

chore: Add CI checks

chore: Add CI checks #1

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request: {}
merge_group:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hecrj/setup-rust-action@v2
with:
components: rustfmt
- run: cargo fmt --all --check