micro/.gitea/workflows/job_lint.yml

28 lines
601 B
YAML
Raw Normal View History

2024-12-07 00:50:59 +07:00
name: lint
on:
pull_request:
2024-12-07 01:37:27 +07:00
types: [opened, reopened, closed, synchronize]
2024-12-07 00:50:59 +07:00
branches:
- master
- v3
- v4
jobs:
2024-12-07 01:37:27 +07:00
if_merged:
2024-12-07 01:57:57 +07:00
if: ${{ github.event.pull_request.state != 'closed' || github.event.pull_request.merged == true }}
2024-12-07 00:50:59 +07:00
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