Skip to content

Format -_-

Format -_- #102

Workflow file for this run

name: Merge Checks
on:
push:
branches: "*"
jobs:
rust-checks:
name: Rust fmt and macOS ARM64 build
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Check formatting
run: cargo fmt --all --check
- name: Cargo check for macOS ARM64
run: cargo check --target aarch64-apple-darwin