2024-12-16 18:06:27 +00:00
|
|
|
name: Format and Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
format-check:
|
|
|
|
runs-on: docker
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v5
|
|
|
|
with:
|
2024-12-16 18:39:59 +00:00
|
|
|
go-version: '1.23.3'
|
2024-12-16 18:06:27 +00:00
|
|
|
|
|
|
|
- name: Run Format Check
|
|
|
|
run: |
|
|
|
|
make format
|