Python linting #95
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: 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/ |