This repository was archived by the owner on Sep 4, 2026. It is now read-only.
Add packaging documentation #41
This file contains hidden or 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: MkDocs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| mkdocs: | |
| name: mkdocs | |
| runs-on: ubuntu-latest | |
| env: | |
| JSON_VERSION: "0.0.7" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'true' | |
| - name: Install mkdocs deps | |
| run: | | |
| sudo apt-get update -y | |
| sudo apt-get install -y python3-pip | |
| sudo pip3 install mkdocs | |
| - name: Run mkdocs | |
| run: | | |
| mkdocs build |