Skip to content

Revert the image name change #8

Revert the image name change

Revert the image name change #8

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:
- name: checkout
uses: actions/checkout@v4
- name: molecule
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: molecule
uses: robertdebock/[email protected]
with:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}
options: "--parallel all"
env:
TOX_PARALLEL_NO_SPINNER: 1