Files added part of 2.15 and 2.16 certification #192
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- pull_request | |
jobs: | |
sanity: | |
name: Sanity (${{ matrix.ansible }}) | |
strategy: | |
matrix: | |
ansible: | |
- stable-2.10 | |
- stable-2.12 | |
- stable-2.13 | |
- stable-2.14 | |
- stable-2.15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v1 | |
with: | |
path: ansible_collections/dellemc/os10 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.12 | |
- name: Install ansible-base (${{ matrix.ansible }}) | |
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | |
- name: Install ansible_collections.ansible.netcommon | |
run: ansible-galaxy collection install ansible.netcommon -p ../../ | |
- name: Run sanity tests | |
run: ansible-test sanity --docker -v --color --python 3.10.12 |