Skip to content

chore(deps): update softprops/action-gh-release action to v2.4.1 #69

chore(deps): update softprops/action-gh-release action to v2.4.1

chore(deps): update softprops/action-gh-release action to v2.4.1 #69

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 # v6.7.0
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