mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2024-11-10 13:44:16 +00:00
24 lines
475 B
YAML
24 lines
475 B
YAML
---
|
|
# -*- coding: utf-8 -*-
|
|
|
|
before_script:
|
|
- apt-get update -qy
|
|
- apt-get install -y python-dev python-pip
|
|
- git submodule update --init
|
|
- pip install --upgrade ansible ansible-lint
|
|
- ansible --version
|
|
- ansible-lint --version
|
|
|
|
stages:
|
|
- ansible-lint
|
|
- ansible-syntax-check
|
|
|
|
ansible-lint-pip:
|
|
stage: ansible-lint
|
|
script:
|
|
- ansible-lint tests/test-pip.yml
|
|
|
|
ansible-lint-docker:
|
|
stage: ansible-lint
|
|
script:
|
|
- ansible-lint tests/test-docker.yml
|