Fix and update CI #18

Merged
otthorn merged 8 commits from fix_and_update_ci into master 2021-02-16 13:10:53 +01:00
Showing only changes of commit 37124b20cb - Show all commits

View file

@ -1,19 +0,0 @@
---
image: python:3.9-alpine
stages:
- lint
yamllint:
stage: lint
script:
- pip install yamllint==1.25.0
- yamllint -c .yamllint.yml .
ansible-lint:
stage: lint
script:
- apk add gcc libc-dev libffi-dev openssl-dev
- pip install ansible-lint==4.3.7
- ansible-lint *.yml
...