bump uv to current version; fix use matrix version python isntall in … #360
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@v3 | |
with: | |
version: "0.5.4" | |
- 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 |