Skip to content

Bump version to 0.3.4 and update README and CHANGELOG #3

Bump version to 0.3.4 and update README and CHANGELOG

Bump version to 0.3.4 and update README and CHANGELOG #3

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: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --with test,dev
- name: Run tests
run: poetry run pytest --cov=bcb --cov-report=xml -m "not integration"
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
file: coverage.xml