todo/.woodpecker/test.yaml
Michael Thomson 6c2e70d09c
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline failed
linting and formatting
2025-02-13 14:01:26 -05:00

19 lines
343 B
YAML

when:
- event: [push, pull_request]
branch: main
# go again
steps:
- name: test
image: golang
environment:
DOCKER_HOST: 'tcp://kubedock-service:2475'
TESTCONTAINERS_RYUK_DISABLED: "true"
TESTCONTAINERS_CHECKS_DISABLE: "true"
commands:
- go get ./...
- go test ./... -v
depends_on:
- build