Update ghcr.io/gethomepage/homepage Docker tag to v0.10.7 #274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |