Skip to content

Merge pull request #6 from BoltzExchange/fix/threshold-check #28

Merge pull request #6 from BoltzExchange/fix/threshold-check

Merge pull request #6 from BoltzExchange/fix/threshold-check #28

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: uv sync --frozen
- name: Check formatting with ruff
run: uv run ruff format --check .
- name: Run ruff checks
run: uv run ruff check .
- name: Run tests
run: uv run pytest .