Skip to content

docs: Add sphinx-autobuild for live preview of docs #28

docs: Add sphinx-autobuild for live preview of docs

docs: Add sphinx-autobuild for live preview of docs #28

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install requirements_dev.txt
run: pip install -r requirements_dev.txt
- name: Check isort
run: isort --check-only iatidata/
- name: Check black
run: black --check iatidata/
- name: Check flake8
run: flake8 iatidata/
- name: Check types with mypy
run: mypy iatidata/