mirror of
https://github.com/thegeeklab/wp-git-clone.git
synced 2024-11-25 09:20:40 +00:00
c6089df662
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
23 lines
438 B
YAML
23 lines
438 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
- event: [push]
|
|
branch:
|
|
- renovate/auto/*
|
|
|
|
steps:
|
|
- name: lint
|
|
image: docker.io/library/golang:1.22
|
|
commands:
|
|
- make lint
|
|
|
|
- name: test
|
|
image: docker.io/library/golang:1.22
|
|
commands:
|
|
- apt-get update
|
|
- apt-get install -y --no-install-recommends git git-lfs
|
|
- make test
|