-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (37 loc) · 903 Bytes
/
ci.yml
File metadata and controls
40 lines (37 loc) · 903 Bytes
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
33
34
35
36
37
38
39
40
name: CI
on:
push:
branches:
- main
pull_request:
env:
JUPYTER_PLATFORM_DIRS: '1'
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.10'
- python-version: '3.13'
- python-version: '3.13'
extras: min
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: hynek/setup-cached-uv@v2
with:
cache-dependency-path: pyproject.toml
- run: uv pip install --system -e .[${{ matrix.extras == 'min' && 'test' || 'test,jupyter' }}]
- uses: pavelzw/pytest-action@v2
with:
custom-arguments: --color=yes
click-to-expand: false
verbose: true
job-summary: true
emoji: false