-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (58 loc) · 1.43 KB
/
test.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
name: test
on:
pull_request:
jobs:
changed-files:
runs-on: ubuntu-latest
outputs:
roles: ${{ steps.changed-files.outputs.all_changed_files }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
with:
dir_names: "true"
escape_json: "false"
json: "true"
dir_names_max_depth: 2
files: |
roles/**
- name: List all changed files
run: |
echo '${{ steps.changed-files.outputs.all_changed_files }}'
test-role:
if: needs.changed-files.outputs.roles != '[]'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
role: ${{ fromJson(needs.changed-files.outputs.roles) }}
distro:
- ubuntu2204
- ubuntu2004
- debian12
- debian11
- debian10
needs: changed-files
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip3 install ansible molecule molecule-plugins[docker]
- name: Run Molecule tests.
run: |
cd ${{ matrix.role }} && molecule test
env:
ANSIBLE_FORCE_COLOR: '1'
PY_COLORS: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}