Skip to content

Bump setuptools from 67.7.0 to 67.7.1 #1337

Bump setuptools from 67.7.0 to 67.7.1

Bump setuptools from 67.7.0 to 67.7.1 #1337

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
tests_matrix:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install GDAL binaries
run: |
sudo apt-get install binutils libproj-dev gdal-bin
- run: pip install -U pip
- run: pip install -U tox tox-gh-actions coverage[toml]
- name: Test with tox
run: tox
tests:
if: ${{ always() }}
runs-on: ubuntu-latest
needs: tests_matrix
steps:
- name: Check test matrix status
if: ${{ needs.tests_matrix.result != 'success' }}
run: exit 1