Skip to content

feature: add rhel9 support (#69) #302

feature: add rhel9 support (#69)

feature: add rhel9 support (#69) #302

Workflow file for this run

---
name: CI
on:
pull_request:
push:
branches:
- main
schedule:
- cron: "0 22 * * 5"
defaults:
run:
working-directory: 'jvoss.netbox'
jobs:
yml_lint:
name: Yaml Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
with:
path: 'jvoss.netbox'
- name: Set up Python 3.
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install yamllint
- name: Lint code.
run: |
yamllint .
ansible_lint:
name: Ansible Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
with:
path: 'jvoss.netbox'
- name: Set up Python 3.
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install test dependencies.
run: pip3 install ansible ansible-lint
- name: Lint code.
run: |
ansible-lint .
molecule:
name: Netbox-latest
runs-on: ubuntu-latest
strategy:
matrix:
distro:
# - amazonlinux2
- centos8
- debian11
- debian12
- fedora37
- rockylinux8
- ubuntu2004
- ubuntu2204
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@v2
with:
path: 'jvoss.netbox'
- name: Set up Python 3.9
uses: actions/setup-python@v2
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 }}