44 lines
927 B
YAML
44 lines
927 B
YAML
---
|
|
|
|
name: Molecule
|
|
|
|
'on':
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
scenario:
|
|
- debian-10
|
|
- debian-11
|
|
- debian-12
|
|
- ubuntu-22.04
|
|
allowed-to-fail:
|
|
- false
|
|
include:
|
|
- scenario: ubuntu-20.04
|
|
allowed-to-fail: true
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: "${{ github.repository }}"
|
|
|
|
- name: Molecule
|
|
uses: gofrolist/molecule-action@v2.3.19
|
|
with:
|
|
molecule_options: --base-config molecule/_shared/base.yml
|
|
molecule_args: --scenario-name ${{ matrix.scenario }}
|
|
molecule_working_dir: "HanXHX/ansible-nginx"
|
|
continue-on-error: ${{ matrix.allowed-to-fail }}
|
|
|
|
- name: Fake command
|
|
run: echo "End of job"
|