Update all non-major maven dependencies #229
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: | |
- pull_request | |
env: | |
PYTHON_VERSION: 3.x | |
jobs: | |
documentation: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python runtime | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Python dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Install theme | |
run: | | |
pip install mkdocs-gitbook | |
- name: Build documentation | |
run: | | |
mkdocs build | |
mkdocs --version |