Skip to content

Add a lint run to check pytest collection works #18

Add a lint run to check pytest collection works

Add a lint run to check pytest collection works #18

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: "Lint: code quality and formatting checks"
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install isort black ruff pytest
- name: isort
run: python -m isort . --check --diff
# - name: black
# run: python -m black --check --diff .
- name: ruff
run: ruff check .
- name: "pytest: check test collection"
run: |
python -m pip install .[dev]
python -m pytest --collect-only