Skip to content

CI Tweaks, Fix #38, and Single Cache #30

CI Tweaks, Fix #38, and Single Cache

CI Tweaks, Fix #38, and Single Cache #30

Workflow file for this run

# see: https://github.com/marketplace/actions/rust-rustfmt-check
name: "Formatting"
on:
pull_request:
push:
jobs:
rust:
name: "Check Rust Formatting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --check