Skip to content

Bump ansible/ansible-lint from 25.9.0 to 25.12.2 #264

Bump ansible/ansible-lint from 25.9.0 to 25.12.2

Bump ansible/ansible-lint from 25.9.0 to 25.12.2 #264

Workflow file for this run

---
name: Molecule Test
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- rockylinux9
- rockylinux10
- ubuntu2204
- ubuntu2404
- debian12
scenario:
- default
- renew
- ca-renew
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-test.txt
- name: ${{ matrix.scenario }} molecule test
run: |
molecule test -s ${{ matrix.scenario }}
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}