Skip to content

BTI-841: Full test suite with 100% coverage and SDK correctness fixes #2

BTI-841: Full test suite with 100% coverage and SDK correctness fixes

BTI-841: Full test suite with 100% coverage and SDK correctness fixes #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [master, develop]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- run: pip install ruff
- run: ruff check .
- run: ruff format --check .
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- run: pip install -r requirements-dev.txt
- run: pytest --cov=buckaroo --cov-report=term-missing