Skip to content

chore: Release version 0.3.6 #10

chore: Release version 0.3.6

chore: Release version 0.3.6 #10

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group test --group dev
- name: Run tests
run: uv run pytest --cov=bcb --cov-report=xml -m "not integration"
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
file: coverage.xml