ci: add format workflow
Some checks failed
Format and Lint / format-check (push) Failing after 11m9s

This commit is contained in:
Максим Слипенко 2024-12-16 21:06:27 +03:00
parent 9d14428127
commit 5466ff1347

View file

@ -0,0 +1,25 @@
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:
go-version: "1.20"
- name: Run Format Check
run: |
make format