Skip to content

Python linting

Python linting #90

Workflow file for this run

name: Python linting
on:
push:
branches: [main]
pull_request:
branches: [main]
# Run once per week (Monday at 06:00 UTC)
schedule:
- cron: '0 6 * * 1'
jobs:
build:
runs-on: ${{ matrix.container }}
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
container:
- ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --constraint ci-constraints.txt flake8 pylint
- name: Lint with flake8
run: |
flake8 inventory/ vault/
- name: Lint with pylint
run: |
pylint inventory/ vault/