Skip to content

Processing meta info (#34) #124

Processing meta info (#34)

Processing meta info (#34) #124

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python: [3.12, 3.13]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v7.1.6
with:
enable-cache: true
python-version: ${{ matrix.python }}
- name: Pull dependencies
run: uv sync --all-extras --all-groups
- name: Execute tests
run: uv run pytest