Remove dead settlement code (we switched to an external lib long ago) #1
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: Check doc | |
on: | |
push: | |
branches: [ 'master', 'stable-*' ] | |
pull_request: | |
branches: [ 'master', 'stable-*' ] | |
jobs: | |
test_doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: 'pip' | |
cache-dependency-path: '**/pyproject.toml' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Check we can generate documentation | |
run: tox -e docs |