Merge pull request #1 from Election-Tech-Initiative/rc-eti-patch-1 #2
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 | |
on: push | |
env: | |
PYTHON_VERSION: 3.8 | |
jobs: | |
validate: | |
name: Validate Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Change Directory | |
run: cd ${{ github.workspace }} | |
- name: Install MkDocs | |
run: make install | |
- name: Lint | |
run: make lint | |
- name: Deploy | |
run: make deploy |