Skip to content

somehow working state #5

somehow working state

somehow working state #5

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.21'
- name: Install dependencies
run: go mod tidy
- name: Run GolangCI-Lint
run: go run github.com/golangci/golangci-lint/cmd/golangci-lint run