-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (40 loc) · 1014 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
43
44
45
46
47
48
---
name: molecule
on:
pull_request:
branches:
- master
schedule:
- cron: "0 3 * * 0"
defaults:
run:
working-directory: 'nephelaiio.docker'
jobs:
molecule:
name: molecule
runs-on: ubuntu-latest
strategy:
matrix:
image:
- geerlingguy/docker-ubuntu2204-ansible:latest
- geerlingguy/docker-ubuntu2004-ansible:latest
- geerlingguy/docker-debian12-ansible:latest
- geerlingguy/docker-debian11-ansible:latest
steps:
- name: check out the codebase
uses: actions/checkout@v3
with:
path: 'nephelaiio.docker'
- name: set up python 3
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: install poetry
run: pip3 install poetry
- name: install pips
run: poetry install
- name: run molecule tests.
run: poetry run -- molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'