Skip to content

Add change log for v0.3.1 (#48) #111

Add change log for v0.3.1 (#48)

Add change log for v0.3.1 (#48) #111

Workflow file for this run

name: beavers CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
fail-fast: false
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions poetry
poetry self add "poetry-dynamic-versioning[plugin]"
- name: Run tox
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: "matrix.python-version == '3.10'"
with:
fail_ci_if_error: true