forgejo-sdk/.woodpecker/build.yml

17 lines
231 B
YAML
Raw Normal View History

variables:
- &golang_image 'golang:1.22'
when:
- branch: main
event: push
path:
exclude: ['*.md', 'docs/**']
steps:
- name: build
image: *golang_image
commands:
- make build
depends_on:
- lint