gh action: bump uv version, drop python 3.8, add python 3.13 #344
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9.16, 3.10.9, 3.11.5, 3.12, 3.13] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v2 | |
with: | |
version: "0.4.20" | |
- name: Set up Python ${{ matrix.python-version }} | |
run: uv python install ${{ matrix.python-version }} | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Tests | |
if: contains(fromJSON('["3.9.16", "3.10.9", "3.11.5", "3.12", "3.13"]'), matrix.python-version) | |
run: make test | |
- name: Test coverage | |
if: matrix.python-version == '3.13' | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: | | |
uv run pytest --cov-report=xml --cov=habanero test/ | |
uv run codecov |