-
Notifications
You must be signed in to change notification settings - Fork 4
79 lines (71 loc) · 1.65 KB
/
netbox.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
67
68
69
70
71
72
73
74
75
76
77
78
79
---
name: Netbox
on:
pull_request:
push:
branches:
- main
defaults:
run:
working-directory: 'jvoss.netbox'
jobs:
netbox:
name: ${{ matrix.netbox }} (${{ matrix.distro }})
runs-on: ubuntu-latest
strategy:
matrix:
distro:
# - amazonlinux2
- centos8
- debian11
- debian12
- fedora37
- rockylinux8
- rockylinux9
- ubuntu2004
- ubuntu2204
netbox:
- v3.7.5
- v3.6.9
- v3.5.9
services:
postgres:
image: postgres
env:
POSTGRES_DB: netbox
POSTGRES_USER: netbox
POSTGRES_PASSWORD: netbox
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
with:
path: 'jvoss.netbox'
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install test dependencies.
run: pip3 install -r requirements.txt
- name: Run Molecule tests.
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}
NETBOX_VERSION_TAG: ${{ matrix.netbox }}