Skip to content

build: update even more build dependencies #125

build: update even more build dependencies

build: update even more build dependencies #125

Workflow file for this run

name: Continuous Integration for development
on: pull_request
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install lint dependencies
run: |
pip install pre-commit black
- name: Install and run pre-commit
uses: pre-commit/action@v3.0.0
test:
runs-on: ubuntu-22.04
needs:
- lint
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up testing python ${{ matrix.config.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.python-version }}
- name: Python poetry action
uses: abatilo/actions-poetry@v2.3.0
- name: Install dependencies
run: |
sudo add-apt-repository -y ppa:ubuntugis/ppa && sudo apt-get update && sudo apt-get install -y build-essential gdal-bin libgdal-dev
- name: Pytest
run: poetry run pytest -x --random-order