2024-06-07 22:18:35 +01:00
|
|
|
variables:
|
|
|
|
- &golang_image 'golang:1.22'
|
|
|
|
|
|
|
|
when:
|
|
|
|
- branch: main
|
|
|
|
event: push
|
2024-06-15 21:39:47 +01:00
|
|
|
path:
|
|
|
|
exclude: ['*.md', 'docs/**']
|
2024-06-15 23:10:32 +01:00
|
|
|
- event: [pull_request]
|
|
|
|
path:
|
|
|
|
exclude: ['*.md', 'docs/**']
|
2024-06-07 22:18:35 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: *golang_image
|
|
|
|
commands:
|
|
|
|
- make build
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- lint
|