--- stages: - lint - test lint: stage: lint image: python:3.11-slim before_script: - pip install ansible-lint yamllint pyyaml script: - make lint test: stage: test image: docker:latest services: - docker:dind variables: DOCKER_TLS_CERTDIR: "" before_script: - apk add --no-cache python3 py3-pip py3-yaml make bash script: - make test