Maxim Slipenko
5466ff1347
Some checks failed
Format and Lint / format-check (push) Failing after 11m9s
25 lines
411 B
YAML
25 lines
411 B
YAML
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
|