Files
papeer/.github/workflows/format.yml
2025-07-08 19:46:06 +00:00

16 lines
246 B
YAML

name: Format
on:
push:
paths:
- '**.go'
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check formatting
run: if [[ -n "$(gofmt -l .)" ]]; then exit 1; fi