goveal/.concourse/tasks/test.yml
Peter Kurfer c05c301dfd
All checks were successful
concourse-ci/golangci-lint golangci-lint run
concourse-ci/gotestsum gotestsum
fix(ci): test image
2023-01-01 13:50:40 +01:00

25 lines
412 B
YAML

---
platform: linux
image_resource:
type: registry-image
source:
repository: docker.io/golang
tag: 1.19-buster
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 ./...