mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-22 01:50:40 +00:00
16 lines
147 B
YAML
16 lines
147 B
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.11
|
|
commands:
|
|
- go test ./...
|
|
|
|
...
|