Skip to content

Update to AdGuard Home 0.107.39 (#14) #23

Update to AdGuard Home 0.107.39 (#14)

Update to AdGuard Home 0.107.39 (#14) #23

Workflow file for this run

---
name: ci
'on':
pull_request:
push:
branches:
- main
defaults:
run:
working-directory: 'bcook254.adguardhome'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'bcook254.adguardhome'
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: python -m pip install yamllint
- name: Lint code.
run: yamllint .
molecule:
name: Molecule Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- name: ubuntu2204
image: docker.io/geerlingguy/docker-ubuntu2204-ansible:latest
- name: ubuntu2004
image: docker.io/geerlingguy/docker-ubuntu2004-ansible:latest
- name: debian12
image: docker.io/geerlingguy/docker-debian12-ansible
- name: debian11
image: docker.io/geerlingguy/docker-debian11-ansible
- name: debian10
image: docker.io/geerlingguy/docker-debian10-ansible
- name: fedora39
image: docker.io/geerlingguy/docker-fedora39-ansible
- name: fedora38
image: docker.io/geerlingguy/docker-fedora38-ansible
- name: centosstream9
image: ghcr.io/bcook254/docker-centosstream9-ansible
- name: centosstream8
image: ghcr.io/bcook254/docker-centosstream8-ansible
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
path: 'bcook254.adguardhome'
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install test dependencies.
run: python -m pip install ansible molecule molecule-plugins[docker] docker
- name: Run Molecule tests.
run: molecule test --driver-name docker --scenario-name ci
env:
PLATFORM_NAME: ${{ matrix.platform.name }}
PLATFORM_IMAGE: ${{ matrix.platform.image }}
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'