Skip to content

Enabler/add ansible sanity action #1

Enabler/add ansible sanity action

Enabler/add ansible sanity action #1

name: AC Ansible sanity
on:
pull_request:
branches:
- dev
- staging*
jobs:
ansible-sanity:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Set up venv
run: |
python -m pip install --upgrade pip
pip install virtualenv
mkdir venv
virtualenv venv/venv-2.16
- name: Install dependencies
run: |
source venv/venv-2.16/bin/activate
python -m pip install --upgrade pip
pip install ansible
- name: Run ac-sanity
run: |
source venv/venv-2.16/bin/activate
./ac --ac-sanity