Files
micro-client-http/.github/workflows/job_lint.yml
pugnack 4d55c7b90a
Some checks failed
sync / sync (push) Has been cancelled
[v4] rename .gitea to .github (#148)
* rename .gitea to .github

* attempt to fix lint/test job
2025-04-28 10:26:29 +03:00

30 lines
638 B
YAML

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'