Skip to content

hotfix

hotfix #21

Workflow file for this run

name: Ansible Playbook Test
on:
push:
branches:
- playbook-wip
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Ansible
run: |
python -m pip install --upgrade pip
pip install ansible
- name: Test Ansible Playbook
run: |
ansible-playbook .cfg/playbook.yaml