Introduce wildfly_systemd_limits variable for SystemD service file co… #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Ansible Module | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
path: "${{ github.repository }}" | |
- name: molecule | |
uses: buluma/[email protected] | |
with: | |
command: lint | |
test: | |
needs: | |
- lint | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
image: | |
- alpine | |
- amazonlinux | |
- debian | |
- centos | |
- fedora | |
- opensuse | |
- ubuntu | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
path: "${{ github.repository }}" | |
- name: molecule | |
uses: buluma/[email protected] | |
with: | |
image: "${{ matrix.image }}" | |
options: parallel | |
scenario: default |