maint: Update MANIFEST.in #230
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: build | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: get repo | |
uses: actions/checkout@v3 | |
- name: set up Python | |
uses: actions/setup-python@v4 | |
- name: install dependencies | |
run: | | |
pip install flake8 black | |
- name: lint with flake8 | |
run: | | |
flake8 | |
- name: lint with black | |
run: | | |
black --check . | |
type-check: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: get repo | |
uses: actions/checkout@v3 | |
- name: set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: install package | |
run: | | |
pip install mypy | |
- name: run mypy check | |
run: | | |
mypy src | |
doc: | |
needs: type-check | |
runs-on: ubuntu-latest | |
steps: | |
- name: get repo | |
uses: actions/checkout@v3 | |
- name: set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: install package | |
run: | | |
pip install .[doc] | |
- name: build document | |
run: | | |
cd doc | |
make html SPHINXOPTS="-W --keep-going" |