Skip to content

Bump ansible-core from 2.19.5 to 2.19.11rc1 #73

Bump ansible-core from 2.19.5 to 2.19.11rc1

Bump ansible-core from 2.19.5 to 2.19.11rc1 #73

Workflow file for this run

---
name: Molecule Test
permissions:
contents: read
on:
push:
branches-ignore:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
# Temporary variable until molecule-docker officially supports ansible 2.19+
env:
ANSIBLE_ALLOW_BROKEN_CONDITIONALS: "True"
jobs:
molecule:
runs-on: [ self-hosted ]
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Python
uses: kishaningithub/setup-python-amazon-linux@v1
with:
python-version: ${{ matrix.python-version }}
cache: "pipenv"
- name: Install pipenv
run: python -m pip install pipenv
- name: Install dependencies
run: pipenv install --dev
- name: Lint the role
run: pipenv run ansible-lint . --exclude=molecule/default/roles
- name: Molecule test
run: pipenv run molecule test