-
Notifications
You must be signed in to change notification settings - Fork 30
32 lines (30 loc) · 921 Bytes
/
python.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Python
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8.15, 3.9.16, 3.10.9, 3.11.1, 3.11.5, 3.12]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
with:
version: "0.4.17"
- 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.10.9", "3.11.1", "3.11.5", "3.12"]'), matrix.python-version)
run: make test
- name: Test coverage
if: matrix.python-version == '3.11.5'
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
uv run pytest --cov-report=xml --cov=habanero test/
uv run codecov