-
Notifications
You must be signed in to change notification settings - Fork 166
42 lines (39 loc) · 995 Bytes
/
molecule.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
name: molecule
on:
pull_request:
branches: ["main", "master", "stable", "release/v*"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 4
matrix:
scenario:
- almalinux-8
- almalinux-9
- centos-7
- centos-8-stream
- centos-9-stream
- debian-10
- debian-11
- debian-12
- fedora-38
- fedora-39
# - oraclelinux-7
- oraclelinux-8
- oraclelinux-9
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-23.04
steps:
- uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: Molecule
uses: gofrolist/molecule-action@v2
with:
molecule_working_dir: "${{ github.repository }}"
molecule_options: --base-config molecule/_shared/base.yml
molecule_args: --scenario-name ${{ matrix.scenario }}