Enable job 'deploy_docs' after build #12
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: SplitRaster Developmnet Build Install and Test | |
on: | |
push: | |
branches: [develop, feature/*] | |
pull_request: | |
branches: [develop, feature/*] | |
jobs: | |
format_and_check: | |
runs-on: ubuntu-latest | |
environment: development | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install black flake8 | |
- name: Format with Black | |
run: | | |
black --check . | |
build: | |
needs: format_and_check | |
runs-on: ubuntu-latest | |
environment: development | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Install setuptools | |
run: | | |
pip install setuptools wheel | |
- name: Build Python package | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Install Python Package | |
run: | | |
pip install dist/*.whl | |
- name: Test with pytest | |
run: | | |
pytest test.py -v | |
deploy_docs: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install mkdocs | |
- name: Deploy to GitHub Pages | |
run: | | |
mkdocs gh-deploy --force |