initial commit
Format / gofmt (push) Failing after 27s
CI / Build (push) Successful in 51s
CI / Go Tests (push) Failing after 21s

This commit is contained in:
2026-06-06 07:54:44 -05:00
commit 1cc94f2c99
68 changed files with 14615 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Format
on:
push:
branches:
- "**"
pull_request:
jobs:
gofmt:
name: gofmt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Verify formatting
shell: bash
run: |
files="$(gofmt -l .)"
if [[ -n "${files}" ]]; then
echo "These files need formatting:"
echo "${files}"
exit 1
fi