Skip to content

⬆️ Bump the uv-dependencies group across 1 directory with 5 u… #1144

⬆️ Bump the uv-dependencies group across 1 directory with 5 u…

⬆️ Bump the uv-dependencies group across 1 directory with 5 u… #1144

Workflow file for this run

name: Check Python Linting and Tests
on: [push, pull_request]
jobs:
stac-model:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
env:
COVERAGE_FILE: .coverage.${{ matrix.python-version }}
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: make setup
- name: Set up cache
uses: actions/cache@v6.1.0
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock') }}
- name: Install dependencies with extras
run: make install-dev-extras
- name: Display Packages
run: pip list
- name: Run checks
run: make lint-all
- name: Run tests
run: |
make test