jx/.gitea/workflows/lint.yaml
Matthew Rich 59459ac604
Some checks failed
Lint / golangci-lint (push) Failing after 4s
Declarative Tests / test (push) Failing after 4s
debug volume config
2024-05-25 13:55:35 -07:00

27 lines
485 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
- run: cat ~/.gitconfig
- run: ls -al ~/.git*
- name: Get packages
run: go get ./...
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55