a61bd5aa85
- 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>
15 lines
No EOL
186 B
YAML
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 |