26 lines
403 B
YAML
26 lines
403 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: testing
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: golang
|
||
|
environment:
|
||
|
SNAPSHOTS_S3_ENDPOINT: minio:9000
|
||
|
TEST_S3_ENDPOINT: minio:9000
|
||
|
commands:
|
||
|
- go mod tidy
|
||
|
- make test
|
||
|
|
||
|
services:
|
||
|
- name: minio
|
||
|
image: minio/minio:latest
|
||
|
environment:
|
||
|
MINIO_ROOT_USER: test
|
||
|
MINIO_ROOT_PASSWORD: testtest
|
||
|
command:
|
||
|
- server
|
||
|
- /data
|
||
|
- --console-address
|
||
|
- :9001
|