mirror of
https://github.com/NohamR/papeer.git
synced 2026-05-24 20:00:45 +00:00
16 lines
246 B
YAML
16 lines
246 B
YAML
name: Format
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.go'
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
- name: Check formatting
|
|
run: if [[ -n "$(gofmt -l .)" ]]; then exit 1; fi
|