Infra Join token Support for Bloxone Ansible v2 #122
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: pr | |
on: | |
pull_request: | |
branches: | |
- v2 | |
jobs: | |
lint: | |
name: linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install flynt lint black | |
pip install -r requirements.txt | |
- name: Run linters | |
run: make lint | |
sanity: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ansible: ['stable-2.15', 'stable-2.16', 'stable-2.17', 'devel'] | |
python: ['3.9', '3.10', '3.11', '3.12'] | |
exclude: | |
- ansible: 'stable-2.15' | |
python: '3.12' | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
path: infoblox.bloxone | |
- uses: ansible-community/[email protected] | |
with: | |
collection-src-directory: infoblox.bloxone | |
ansible-core-version: ${{ matrix.ansible }} | |
target-python-version: ${{ matrix.python }} | |
testing-type: sanity |