Add sanity check on PRs #5
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: Ansible Galaxy Publish | |
on: | |
pull_request: | |
jobs: | |
sanity: | |
name: Sanity Check | |
strategy: | |
matrix: | |
ansible: | |
- stable-2.9 | |
- stable-2.15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: ansible_collections/redhatci/ocp | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.11 | |
- name: Install ansible-base ${{ matrix.ansible }} | |
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | |
# Only check changed files, don't fail just yet | |
- name: Run sanity test | |
run: ansible-test sanity -v --docker --color --coverage --changed --base-branch master --failure-ok | |
working-directory: ansible_collections/redhatci/ocp |