mirror of
https://github.com/thegeeklab/wp-git-clone.git
synced 2024-11-09 17:50:39 +00:00
20 lines
384 B
YAML
20 lines
384 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
- name: lint
|
|
image: docker.io/library/golang:1.21
|
|
commands:
|
|
- make lint
|
|
|
|
- name: test
|
|
image: docker.io/library/golang:1.21
|
|
commands:
|
|
- apt-get update
|
|
- apt-get install -y --no-install-recommends git git-lfs
|
|
- make test
|