fibonacci_pipeline/argo-workflows/templates/unit-tests-template.yaml
2024-11-08 12:37:54 +01:00

22 lines
No EOL
480 B
YAML

apiVersion: argoproj.io/v1alpha1
kind: ClusterWorkflowTemplate
metadata:
name: unit-tests-template
spec:
entrypoint: unit-tests
templates:
- name: unit-tests
container:
image: golang:1.23.2
command: [sh, -c]
args:
- |
set -e
cd /shared-data/repo
go test ./... -v
echo unit-test task completed
volumeMounts:
- name: shared-data
mountPath: /shared-data