Skip to content

Removed protocol checks based on calculations based on explained diff… #20

Removed protocol checks based on calculations based on explained diff…

Removed protocol checks based on calculations based on explained diff… #20

Workflow file for this run

name: Run tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install UV
uses: astral-sh/setup-uv@v6
- name: Install project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest -v