68 lines
2.0 KiB
YAML
68 lines
2.0 KiB
YAML
# This file implements a Github action to run Ansible collection sanity tests
|
|
# on the Conjur Ansible Collection. The Ansible collection sanity tests are
|
|
# run across the following matrices:
|
|
#
|
|
#Ansible versions:
|
|
# - stable-2.9
|
|
# - stable-2.10
|
|
# - devel
|
|
#
|
|
#Python versions:
|
|
# - Python 2.7
|
|
# - Python 3.7
|
|
# - Python 3.8
|
|
|
|
name: CI
|
|
on:
|
|
# Run CI against all pushes (direct commits) and Pull Requests
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
|
|
###
|
|
# Sanity tests (REQUIRED)
|
|
#
|
|
# https://docs.ansible.com/ansible/latest/dev_guide/testing_sanity.html
|
|
|
|
sanity:
|
|
name: Sanity (${{ matrix.ansible }}+py${{ matrix.python }})
|
|
strategy:
|
|
matrix:
|
|
ansible:
|
|
# It's important that Sanity is tested against all stable-X.Y branches
|
|
# Testing against `devel` may fail as new tests are added.
|
|
- stable-2.9
|
|
- stable-2.10
|
|
- devel
|
|
python:
|
|
- 2.7
|
|
- 3.7
|
|
- 3.8
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
# ansible-test requires the collection to be in a directory in the form
|
|
# .../ansible_collections/cyberark/conjur/
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: ansible_collections/cyberark/conjur
|
|
|
|
- name: Set up Python ${{ matrix.ansible }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
|
|
# Install the head of the given branch (devel, stable-2.10)
|
|
- name: Install ansible-base (${{ matrix.ansible }})
|
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
|
|
|
|
# run ansible-test sanity inside of Docker.
|
|
# The docker container has all the pinned dependencies that are required.
|
|
# Explicity specify the version of Python we want to test
|
|
- name: Run sanity tests
|
|
run: ansible-test sanity --docker -v --color --python ${{ matrix.python }}
|
|
working-directory: ./ansible_collections/cyberark/conjur
|