Skip to content

fix galaxy 22.05 start #97

fix galaxy 22.05 start

fix galaxy 22.05 start #97

Workflow file for this run

---
name: Molecule
on: [push, pull_request, workflow_dispatch]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/molecule-action@2.6.16
with:
command: lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
config:
- image: "centos"
tag: "7"
- image: "Rocky"
tag: "9"
#- image: "ubuntu"
# tag: "16.04"
#- image: "ubuntu"
# tag: "18.04"
#- image: "ubuntu"
# tag: "20.04"
steps:
- name: checkout
uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/molecule-action@2.6.16
with:
image: "${{ matrix.config.image }}"
tag: "${{ matrix.config.tag }}"
options: "--parallel all"
env:
TOX_PARALLEL_NO_SPINNER: 1