Added a Gitlab CI pipeline

This commit is contained in:
Tobias Schmidl 2021-09-28 05:43:48 +00:00
parent e0619e10ec
commit c8d7459327

10
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,10 @@
---
image: docker
services:
- docker:dind
test:
before_script:
- apk add --no-cache docker-compose
script:
- docker-compose config -q
...