-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (27 loc) · 803 Bytes
/
latest-deps.yml
File metadata and controls
35 lines (27 loc) · 803 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
name: Test Latest Dependencies
on:
schedule:
# Every Monday at 07:00 UTC
- cron: "0 7 * * 1"
workflow_dispatch:
jobs:
test-latest:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install with latest dependencies
run: uv sync --group dev --upgrade
- name: Test
run: uv run pytest --cov=xarray_plotly
- name: Print dependency versions
if: always()
run: uv pip list | grep -iE "xarray|plotly|pandas" || true