Skip to content

Update ghcr.io/gethomepage/homepage Docker tag to v0.10.7 #274

Update ghcr.io/gethomepage/homepage Docker tag to v0.10.7

Update ghcr.io/gethomepage/homepage Docker tag to v0.10.7 #274

Workflow file for this run

name: Ansible Lint
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
name: Ansible Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install libssh-dev
run: |
sudo apt-get update
sudo apt-get install -y libssh-dev
- name: Install ansible-lint
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Install Galaxy modules
run: |
ansible-galaxy install -r ansible/requirements.yml
- name: Run ansible-lint
run: ansible-lint
working-directory: ansible