-
Notifications
You must be signed in to change notification settings - Fork 4
42 lines (42 loc) · 954 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
---
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
# lint:
# runs-on: ubuntu-20.04
# steps:
# - name: checkout
# uses: actions/checkout@v4
# - name: ansible-lint
# uses: ansible-community/ansible-lint-action@main
test:
# needs:
# - lint
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
config:
# - image: "ubuntu"
# tag: "noble"
- image: "ubuntu"
tag: "jammy"
- image: "ubuntu"
tag: "focal"
steps:
- name: checkout
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: molecule
uses: robertdebock/molecule-action@6.0.1
with:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}