Skip to content

Allow systemd unit file overrides #43

Allow systemd unit file overrides

Allow systemd unit file overrides #43

Workflow file for this run

---
name: Molecule Test
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: molecule
uses: robertdebock/[email protected]
with:
entrypoint: /usr/local/bin/molecule
args: lint
test:
needs:
- lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
config:
- image: "centos"
tag: "6"
- image: "centos"
tag: "7"
- image: "centos"
tag: "8"
- image: "amazonlinux"
tag: "2"
steps:
- name: checkout
uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/[email protected]
with:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}
options: "--parallel all"