26 lines
488 B
YAML
26 lines
488 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
|
|
curl -L https://github.com/go-task/task/releases/latest/download/task_linux_amd64.tar.gz | tar -xvz -C /usr/local/bin task
|
|
task test
|