Skip to content

Clean up the converge for nginx sharing #15

Clean up the converge for nginx sharing

Clean up the converge for nginx sharing #15

Workflow file for this run

---
name: Ansible Molecule
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
tags_ignore:
- '*'
pull_request:
schedule:
- cron: '28 15 13 * *'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ansible/ansible-lint@main
test:
needs:
- lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config:
- image: amazonlinux2
- image: ubuntu2204
- image: rockylinux8
steps:
- name: checkout
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies
run: pip install ansible molecule-docker docker requests==2.31.0
- name: molecule
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
image: "${{ matrix.image }}"
working-directory: "${{ github.repository }}"