Skip to content

Merge pull request #3 from alexferl/dependabot/pip/filelock-3.20.1 #41

Merge pull request #3 from alexferl/dependabot/pip/filelock-3.20.1

Merge pull request #3 from alexferl/dependabot/pip/filelock-3.20.1 #41

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v7
with:
python-version: "${{ matrix.python-version }}"
- name: Install the project
run: uv sync --frozen --all-extras --dev
- name: Run tests
run: uv run python -m unittest