tarr/.gitea/workflows/golangci-lint.yaml
Markus Pesch b316124df4
Some checks failed
Markdown linter / markdown-lint (push) Successful in 12s
Golang Tests / unittest (push) Failing after 20s
golangci-lint / lint (stable, ubuntu-latest) (push) Failing after 1m10s
chore(ci): add golangci-linter
2025-05-13 20:21:56 +02:00

26 lines
504 B
YAML

name: golangci-lint
on:
push:
branches:
- master
pull_request:
types: [ "opened", "reopened", "synchronize" ]
permissions:
contents: read
jobs:
golangci:
strategy:
matrix:
go: [stable]
os: [ubuntu-latest]
name: lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v8