Skip to content

CI

CI #2020

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.13'
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
prune-cache: false
- name: Typecheck
run: |
uv run --frozen --group typecheck mypy src