feat(list): add generic list implementation #1

Merged
rick merged 10 commits from feature/list into develop 2022-07-26 22:45:22 +02:00
Showing only changes of commit 0cf7cb79af - Show all commits

View File

@ -26,4 +26,21 @@ steps:
trigger:
branch:
- develop
---
kind: pipeline
type: docker
name: feature
steps:
- name: Run tests
image: registry.riba-interactive.de/alpine-build:latest
commands:
- ctest
trigger:
branch:
- feature/*
image_pull_secrets:
- dockerconfig
...