Files
tcgdex-golang/.gitea/workflows/golangci-lint.yml
kratisto 58535a07ff
Some checks failed
golangci-lint / lint (push) Failing after 2m21s
Test / test (push) Successful in 3m47s
chore: migrate to gitea
2026-01-25 21:50:03 +01:00

23 lines
485 B
YAML

name: golangci-lint
on:
push:
pull_request:
permissions:
contents: read
# Optional: allow read access to pull requests. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.3.1