mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-02-13 21:00:00 +00:00
23 lines
323 B
YAML
23 lines
323 B
YAML
steps:
|
|
build:
|
|
image: golang
|
|
commands:
|
|
- go build
|
|
- go test
|
|
|
|
services:
|
|
database:
|
|
image: mysql
|
|
ports:
|
|
- 3306
|
|
environment:
|
|
MYSQL_DATABASE: test
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
|
|
|
|
cache:
|
|
image: redis
|
|
failure: ignore
|
|
directory: /tmp/
|
|
ports:
|
|
- '6379'
|