10 lines
194 B
YAML
10 lines
194 B
YAML
|
steps:
|
||
|
build:
|
||
|
image: "golang:1.21.5-alpine"
|
||
|
commands:
|
||
|
- go build main.go
|
||
|
lint:
|
||
|
image: "golang:1.21.5-alpine"
|
||
|
commands:
|
||
|
- go fmt ./main.go
|
||
|
- go vet ./main.go
|