Skip to content

ENH: Add action code from khalford/check-version-action #5

ENH: Add action code from khalford/check-version-action

ENH: Add action code from khalford/check-version-action #5

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
test_and_lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.12", "3.x" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Analyse with pylint
run: |
python3 -m pylint src --recursive=true --rcfile=.pylintrc
python3 -m pylint tests --recursive=true --rcfile=.pylintrc
- name: Run Black formatter
uses: psf/black@stable