Skip to content

chore(deps): update github artifact actions (major) #101

chore(deps): update github artifact actions (major)

chore(deps): update github artifact actions (major) #101

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@5a7eac68fb9809dea845d802897dc5c723910fa3 # v7.1.3
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
- name: Install dependencies
run: uv pip install -r pyproject.toml
- name: Install test dependencies
run: uv pip install ".[test]"
- name: Test with python ${{ matrix.python-version }}
run: uv run --frozen pytest