vanity-tester-backend-go/.forgejo/workflows/golangci.yml
Fijxu cc1b3ca841
Some checks failed
golangci-lint / lint (push) Failing after 1m10s
ci: add golangci.yml file and workflow
2025-02-02 14:08:40 -03:00

26 lines
No EOL
556 B
YAML

name: golangci-lint
on:
push:
branches:
- main
- master
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci:
name: lint
runs-on: runner
steps:
- uses: actions/checkout@v4
- uses: https://github.com/actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: https://github.com/golangci/golangci-lint-action@v6
with:
version: v1.63