Files
Joe Hanley 538130c394 Set up mdformat formatter and GitHub Action (#138)
* Set up mdformat markdown formatter and GitHub Action

* Address code review feedback on markdown formatter scripts
2026-06-22 15:05:23 -07:00

24 lines
445 B
YAML

name: Format Check
on:
push:
branches: [ main, next ]
pull_request:
branches: [ main, next ]
jobs:
format:
name: Markdown Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run Format Check
run: bash scripts/format.sh --check