Skip to content

fix(roles/freeipa_server): make the pki-tomcatd startup timeout effec… #172

fix(roles/freeipa_server): make the pki-tomcatd startup timeout effec…

fix(roles/freeipa_server): make the pki-tomcatd startup timeout effec… #172

Workflow file for this run

name: 'Linuxfabrik: Unit Tests'
on:
push:
branches:
- 'main'
pull_request: {}
permissions:
contents: 'read'
jobs:
controller-plugins:
name: 'Controller plugins (Python ${{ matrix.python-version }})'
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
matrix:
# Controller-side plugins (filter, lookup). The managed-node tier
# (modules on RHEL 8 / Python 3.6) needs a UBI 8 container and is
# scaffolded in tox.ini, not run here yet.
python-version:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
steps:
- name: 'Harden the runner (Audit all outbound calls)'
uses: 'step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920' # v2.20.0
with:
egress-policy: 'audit'
- name: 'Checkout repository'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
- name: 'Set up Python'
uses: 'actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1' # v6.3.0
with:
python-version: '${{ matrix.python-version }}'
- name: 'Install tox'
run: 'pip install tox'
- name: 'Run tox for this Python (all matching ansible-core envs)'
# `-f pyXYZ` selects every tox env carrying this Python's factor,
# e.g. py311 -> py311-ansible215/216/217/218.
run: 'tox -f py$(echo "${{ matrix.python-version }}" | tr -d ".")'