upgrade pip #248
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: Builds and publishes docs to GitHub pages | |
on: | |
push: | |
branches: [main, fix_publish_docs] | |
paths: | |
- docs/** | |
- .github/workflows/publish-docs.yml | |
workflow_dispatch: | |
jobs: | |
build-and-publish-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- run: pip install --upgrade pip | |
- run: pip install "api/.[test]" | |
- run: pip install mkdocs-material mkdocstrings mkdocs-include-dir-to-nav mkdocstrings-python | |
- run: mkdocs gh-deploy |