goveal/.concourse/tasks/test.yml

26 lines
419 B
YAML
Raw Normal View History

2023-01-01 12:42:36 +00:00
---
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 ./...