15 lines
186 B
YAML
15 lines
186 B
YAML
|
variables:
|
||
|
- &golang_image 'golang:1.22'
|
||
|
|
||
|
when:
|
||
|
- branch: main
|
||
|
event: push
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: *golang_image
|
||
|
commands:
|
||
|
- make build
|
||
|
|
||
|
depends_on:
|
||
|
- lint
|