Skip to content

Merge pull request #111 from stac-utils/update-1.4.0 #280

Merge pull request #111 from stac-utils/update-1.4.0

Merge pull request #111 from stac-utils/update-1.4.0 #280

Workflow file for this run

name: Test Runner
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
pre-commit:
name: Run pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
- name: Run pre-commit checks
uses: pre-commit/[email protected]
with:
extra_args: --all-files
env:
PRE_COMMIT_HOME: ~/.cache/pre-commit
test:
needs: pre-commit # This ensures tests run after pre-commit checks
name: Execute tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["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 '.[dev]'
- name: Run unit tests
run: pytest -v