Files
getpsrc/.gitea/workflows/golangci-lint.yaml
CSRBot f632075ca0
Some checks failed
Golang Tests / unittest (stable, ubuntu-latest-amd64) (push) Successful in 14s
Markdown linter / markdown-lint (push) Successful in 4s
Golang Tests / unittest (stable, ubuntu-latest-amd64) (pull_request) Successful in 5s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (pull_request) Failing after 7s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (push) Failing after 24s
Markdown linter / markdown-lint (pull_request) Successful in 3s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (push) Successful in 53s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (push) Failing after 22s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (pull_request) Successful in 16s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (pull_request) Failing after 21s
chore(deps): update actions/checkout action to v4.3.0
2025-08-11 13:13:38 +00:00

27 lines
552 B
YAML

name: Golang CI lint
on:
pull_request:
types: [ "opened", "reopened", "synchronize" ]
push:
branches: [ '**' ]
tags-ignore: [ '**' ]
permissions:
contents: read
jobs:
golangci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ stable ]
os: [ ubuntu-latest-amd64, ubuntu-latest-arm64 ]
steps:
- uses: actions/checkout@v4.3.0
- uses: actions/setup-go@v5.5.0
with:
go-version: ${{ matrix.go }}
- uses: golangci/golangci-lint-action@v8.0.0
with:
version: v2.1