Skip to content

Workflow file for this run

name: check formatting
on: [push]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: check out
uses: actions/checkout@v4
# TODO: use misc/fmt.sh
- run: cargo fmt -- --check
name: check formatting