jx/.gitea/workflows/lint.yaml
Matthew Rich f18db1c5fa
Some checks failed
Lint / golangci-lint (push) Failing after 9s
Declarative Tests / test (push) Failing after 5s
debug volume config
2024-05-25 13:31:48 -07:00

25 lines
427 B
YAML

name: Lint
on:
- push
jobs:
lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.22.1"
cache: false
- name: Check out code
uses: actions/checkout@v3
- name: Get packages
run: go get ./...
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55