2023-10-12 14:18:25 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
2024-02-05 07:58:30 +00:00
|
|
|
- event: [push]
|
|
|
|
branch:
|
2024-02-07 08:10:12 +00:00
|
|
|
- renovate/auto/*
|
2023-10-12 14:18:25 +00:00
|
|
|
|
|
|
|
steps:
|
2023-12-23 22:45:17 +00:00
|
|
|
- name: lint
|
2024-02-07 21:32:36 +00:00
|
|
|
image: docker.io/library/golang:1.22
|
2023-10-12 14:18:25 +00:00
|
|
|
commands:
|
|
|
|
- make lint
|
|
|
|
|
2023-12-23 22:45:17 +00:00
|
|
|
- name: test
|
2024-02-07 21:32:36 +00:00
|
|
|
image: docker.io/library/golang:1.22
|
2023-10-12 14:18:25 +00:00
|
|
|
commands:
|
|
|
|
- make test
|