forgejo-sdk/.woodpecker/build.yml
qwerty287 a61bd5aa85 Improve testing workflows (#7)
- make files non hidden
- remove forgejo actions files
- simplfy commands
- remove useless `setup` step (checkout is done by CI, and clean up is not necessary before the build)

Reviewed-on: https://codeberg.org/mvdkleijn/forgejo-sdk/pulls/7
Co-authored-by: qwerty287 <qwerty287@noreply.codeberg.org>
Co-committed-by: qwerty287 <qwerty287@noreply.codeberg.org>
2024-06-15 20:14:45 +00:00

15 lines
No EOL
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