2024-06-15 21:14:45 +01:00
|
|
|
variables:
|
|
|
|
- &golang_image 'golang:1.22'
|
|
|
|
|
|
|
|
when:
|
2024-06-15 23:10:32 +01:00
|
|
|
- branch: main
|
|
|
|
event: push
|
|
|
|
- event: [pull_request, manual]
|
2024-06-15 21:14:45 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: vendor
|
|
|
|
image: *golang_image
|
|
|
|
directory: forgejo
|
|
|
|
commands:
|
|
|
|
- go mod vendor
|
|
|
|
|
|
|
|
- name: vet
|
|
|
|
image: *golang_image
|
|
|
|
depends_on: [vendor]
|
|
|
|
commands:
|
|
|
|
- make vet
|
|
|
|
|
|
|
|
- name: lint
|
|
|
|
image: *golang_image
|
|
|
|
depends_on: [vendor]
|
|
|
|
commands:
|
|
|
|
- make ci-lint
|