Translate climate. Fix errors (#206) #459
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 | |
# Environment | |
env: | |
NODE_VERSION: 10.x | |
PYTHON_VERSION: 3.x | |
# Jobs to run | |
jobs: | |
# Build documentation | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source form GitHub | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Install Python runtime and dependencies | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install theme and dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install . | |
- name: Build documents | |
run: | | |
mkdocs build --clean |