Skip to content

added python lower version support #3

added python lower version support

added python lower version support #3

Workflow file for this run

name: Test Application
on:
pull_request:
push:
branches:
- 'main'
jobs:
uv-example:
name: python
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install Venv
run: uv venv
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests