Reduce the Python matrix to 3.7--3.10 #10
Workflow file for this run
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"] | |
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: | | |
sudo apt-get update | |
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository ppa:ubuntugis/ppa | |
sudo apt-get update | |
sudo apt-get install -y gdal-bin libgdal-dev | |
export CPLUS_INCLUDE_PATH=/usr/include/gdal | |
export C_INCLUDE_PATH=/usr/include/gdal | |
python -m pip install --upgrade pip | |
pip install GDAL==`gdal-config --version` | |
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: | | |
pip install pytest | |
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 |