nurse/.concourse/tasks/lint.yml

28 lines
590 B
YAML
Raw Normal View History

2022-09-27 20:19:27 +00:00
---
platform: linux
image_resource:
type: registry-image
source:
repository: docker.io/golang:1.19-bullseye
tag: latest
inputs:
- name: repo
path: .
params:
GO111MODULE: "on"
CGO_ENABLED: "0"
GITEA_TOKEN: ((gitea-credentials.token))
DOCKER_HOST: tcp://127.0.0.1:2375
run:
path: sh
args:
- -ce
- |
apk add -U --no-cache curl
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin
go run github.com/magefile/mage lint