Fnal fix #3155
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: Pure Storage Ansible CI | |
"on": | |
pull_request: | |
push: | |
schedule: | |
- cron: '25 10 * * *' | |
jobs: | |
build: | |
name: Build flasharray on Ansible ${{ matrix.ansible }} (Python ${{ matrix.python-version }}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
ansible: | |
- stable-2.15 | |
- stable-2.16 | |
- stable-2.17 | |
- devel | |
python-version: | |
- 3.9 | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
exclude: | |
- python-version: 3.9 | |
ansible: stable-2.16 | |
- python-version: 3.9 | |
ansible: stable-2.17 | |
- python-version: 3.9 | |
ansible: devel | |
- python-version: "3.10" | |
ansible: devel | |
- python-version: "3.12" | |
ansible: stable-2.15 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python${{ matrix.python }} -m pip install --upgrade pip | |
python${{ matrix.python }} -m pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check | |
- name: Run sanity tests | |
run: | | |
pwd | |
mkdir -p ansible_collections/purestorage/flasharray | |
rsync -av . ansible_collections/purestorage/flasharray --exclude ansible_collection/purestorage/flasharray | |
cd ansible_collections/purestorage/flasharray | |
ansible-test sanity -v --color --python ${{ matrix.python-version }} --docker |