arch-install/.gitea/workflows/lint.yml
Ariejan de Vroom 8eeb3e77a6
All checks were successful
Lint / Lint (3.11) (push) Successful in 1m50s
Lint / Lint (3.10) (push) Successful in 1m57s
Fix linting stuff
2024-06-07 09:04:58 +02:00

47 lines
982 B
YAML

---
name: Lint
on:
push:
branches:
- master
pull_request:
schedule:
- cron: "0 5 * * 0"
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- name: Check out the codebase
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install -r requirements.txt
ansible-galaxy install -r requirements.yml
- name: Lint
run: |
ansible --version
ansible-lint --version
yamllint --version
yamllint --format parsable .
ansible-lint -v