docs: Add sphinx-autobuild for live preview of docs #28
Workflow file for this run
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: 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/ |