Files
papeer/.github/workflows/format.yml
2022-03-02 19:06:55 +01:00

16 lines
246 B
YAML

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