micro/.gitea/workflows/job_lint.yml
Василий Толстов aa360dcf51
All checks were successful
test / test (push) Successful in 50s
Обновить .gitea/workflows/job_lint.yml
2024-12-06 23:11:48 +03:00

27 lines
485 B
YAML

name: lint
on:
pull_request:
types: [opened, reopened, synchronize]
branches:
- master
- v3
- v4
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: setup-go
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: checkout
uses: actions/checkout@v3
- name: deps
run: go get -v -d ./...
- name: lint
uses: https://github.com/golangci/golangci-lint-action@v6
with:
version: v1.62.2