Skip to content

fix: support different python objects in list2string concat #133

fix: support different python objects in list2string concat

fix: support different python objects in list2string concat #133

Workflow file for this run

name: Continuous Integration for development
on: pull_request
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install lint dependencies
run: |
pip install pre-commit black
- name: Install and run pre-commit
uses: pre-commit/[email protected]
linux-tests:
needs:
- lint
strategy:
fail-fast: false
matrix:
config:
- python-version: "3.10"
tox: 310
- python-version: 3.11
tox: 311
- python-version: 3.12
tox: 312
poetry-version: [ 1.7.0 ]
os: [ ubuntu-22.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up testing Python ${{ matrix.config.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.python-version }}
- name: Set up base Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Python Poetry Action
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- 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
python -m pip install --upgrade pip tox
- name: Run tox
run: tox -e py${{ matrix.config.tox }}