Skip to content

Bump astral-sh/setup-uv from 7.1.3 to 7.1.4 in /.github/workflows in the gha-patches group #2039

Bump astral-sh/setup-uv from 7.1.3 to 7.1.4 in /.github/workflows in the gha-patches group

Bump astral-sh/setup-uv from 7.1.3 to 7.1.4 in /.github/workflows in the gha-patches group #2039

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
paths-ignore:
- README.md
schedule:
# run this every Wednesday at 3 am UTC
- cron: 0 3 * * 3
workflow_dispatch:
jobs:
tests:
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- '3.10'
- '3.14'
install-args:
- ''
- --extra HDF5
include:
- os: ubuntu-22.04
python-version: '3.10'
install-args: --extra HDF5 --resolution=lowest-direct
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
prune-cache: false
- name: run tests
run: |
uv run --group test ${{ matrix.install-args }} \
pytest --color=yes
type-check:
runs-on: ubuntu-latest
name: type check
strategy:
matrix:
python-version:
- '3.10'
- '3.13'
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
prune-cache: false
- name: Typecheck
run: |
uv run --frozen --group typecheck mypy src