2020-11-04 20:15:24 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: check
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: yamllint
|
|
|
|
image: python:3.9-alpine
|
|
|
|
commands:
|
2021-02-16 03:31:26 +01:00
|
|
|
- pip install yamllint==1.26.0
|
2020-11-04 20:15:24 +01:00
|
|
|
- yamllint -c .yamllint.yml .
|
|
|
|
|
|
|
|
- name: ansible-lint
|
|
|
|
image: python:3.9-alpine
|
|
|
|
commands:
|
2020-11-04 20:18:36 +01:00
|
|
|
- apk add --no-cache gcc libc-dev libffi-dev openssl-dev
|
2020-11-04 20:17:37 +01:00
|
|
|
- pip install ansible-lint==4.3.7
|
2021-02-07 17:32:02 +01:00
|
|
|
- ansible-lint
|
2020-11-04 20:15:24 +01:00
|
|
|
...
|