13 lines
202 B
YAML
13 lines
202 B
YAML
|
platform: linux/amd64
|
||
|
|
||
|
pipeline:
|
||
|
format:
|
||
|
image: golang
|
||
|
commands:
|
||
|
- files=$(gofmt -l .) && echo "$files" && [ -z "$files" ]
|
||
|
build:
|
||
|
image: golang
|
||
|
commands:
|
||
|
- make build
|
||
|
|