goveal/.concourse/tasks/test.yml
Peter Kurfer d4d2cbd586
All checks were successful
concourse-ci/golangci-lint golangci-lint run
concourse-ci/gotestsum gotestsum
feat(ci): prepare concourse pipelines
2023-01-01 13:48:50 +01:00

25 lines
419 B
YAML

---
platform: linux
image_resource:
type: registry-image
source:
repository: docker.io/golang:1.19-buster
tag: latest
inputs:
- name: repo
path: .
params:
GO111MODULE: "on"
CGO_ENABLED: "1"
GITEA_TOKEN: ((gitea-credentials.token))
run:
path: bash
args:
- -ce
- |
go install gotest.tools/gotestsum@latest
gotestsum -f pkgname-and-test-fails -- -race -shuffle=on ./...