This repository has been archived on 2023-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
kreaper/.agola/config.yml
Peter Kurfer 359be8cf44
Some checks are pending
agola/kreaper/Renovate deps The run finished successfully
agola/kreaper/Test and lint The run is pending
feat(ci): run renovate bot
2022-09-27 21:59:50 +02:00

75 lines
2 KiB
YAML

version: v0
runs:
- name: Renovate deps
when:
branch: main
tasks:
- name: Run renovate
runtime:
containers:
- image: docker.io/renovate/renovate
environment:
RENOVATE_PLATFORM: gitea
RENOVATE_AUTODISCOVER: 'false'
RENOVATE_ENDPOINT: https://code.icb4dc0.de/api/v1
LOG_LEVEL: info
RENOVATE_TOKEN:
from_variable: gitea-token
GITHUB_COM_TOKEN:
from_variable: github-token
steps:
- run:
name: Run bot
command: renovate prskr/kreaper
- name: Test and lint
tasks:
- name: Checkout code
runtime:
containers:
- image: docker.io/alpine/git
steps:
- clone:
- save_to_workspace:
contents:
- source_dir: .
dest_dir: .
paths:
- "**"
- name: Run tests
runtime:
containers:
- image: docker.io/golang:1.19-bullseye
environment:
GO111MODULE: "on"
CGO_ENABLED: "1"
steps:
- restore_workspace:
dest_dir: .
- run:
name: Install gotestsum
command: go install gotest.tools/gotestsum@latest
- run:
name: Create out directory
command: mkdir -p out
- run:
name: Run tests
command: gotestsum -- -coverprofile=out/cover.txt -shuffle=on -race -covermode=atomic ./...
depends:
- Checkout code
- name: Lint code
runtime:
containers:
- image: docker.io/golangci/golangci-lint
environment:
GO111MODULE: "on"
CGO_ENABLED: "0"
steps:
- restore_workspace:
dest_dir: .
- run:
name: Run golangci-lint
command: golangci-lint run -v
depends:
- Checkout code