Skip to content

[6.16.z] Cherrypick of All Hosts Manage Errata #1460

[6.16.z] Cherrypick of All Hosts Manage Errata

[6.16.z] Cherrypick of All Hosts Manage Errata #1460

Workflow file for this run

# CI stages to execute against Pull Requests
name: Airgun - CI
on:
pull_request:
types: ["opened", "synchronize", "reopened"]
env:
PYCURL_SSL_LIBRARY: openssl
jobs:
codechecks:
name: Code Quality
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout Airgun
uses: actions/checkout@v4
- name: Set Up Python-${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
sudo apt update
pip install -U pip
pip install -U -r requirements.txt -r requirements-optional.txt
- name: Analysis (git diff)
if: failure()
run: git diff
- name: Docs Build
run: |
make docs-html