Draft of simple .gitlab-ci.yml config.

This commit is contained in:
Alexey Skobkin 2022-01-27 03:12:18 +03:00
parent 955f090a65
commit c93b22640d
1 changed files with 4 additions and 0 deletions

4
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,4 @@
validate:
image: 'docker/compose:1.29.2'
script:
- for DIR in . ; do echo $DIR && cd $DIR && cp .env.dist .env && docker-compose config && cd .. ; done