👷 Add missing dep for CI

Emilien Mantel 2024-08-26 17:59:12 +02:00
parent cd9cc5c485
commit 1d062b1d00
2 changed files with 16 additions and 0 deletions

View File

@ -37,5 +37,13 @@ jobs:
- name: Fetch code
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install lib dependencies
run: pip3 install netaddr
- name: Run ansible-lint
uses: ansible/ansible-lint@v24.7.0

View File

@ -23,6 +23,14 @@ jobs:
with:
path: "${{ github.repository }}"
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install lib dependencies
run: pip3 install netaddr
- name: Molecule
uses: gofrolist/molecule-action@v2
with: