update ci (#183)
All checks were successful
coverage / build (push) Successful in 3m43s
test / test (push) Successful in 20m34s

This commit is contained in:
2025-05-05 21:25:56 +05:00
committed by GitHub
parent 8956d790dc
commit f0afa24470
11 changed files with 77 additions and 29 deletions

29
.github/workflows/job_lint.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: lint
on:
pull_request:
types: [opened, reopened, synchronize]
branches: [ master, v3, v4 ]
paths-ignore:
- '.github/**'
- '.gitea/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
with:
filter: 'blob:none'
- name: setup go
uses: actions/setup-go@v5
with:
cache-dependency-path: "**/*.sum"
go-version: 'stable'
- name: setup deps
run: go get -v ./...
- name: run lint
uses: golangci/golangci-lint-action@v6
with:
version: 'latest'