Skip to content

build: add poetry-bumpversion plugin #524

build: add poetry-bumpversion plugin

build: add poetry-bumpversion plugin #524

Workflow file for this run

name: "Ubuntu"
on: [ "push", "pull_request" ]
concurrency:
group: ${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Run tests
env:
RUNTEST_CFG: ${{ secrets.RUNTEST_CFG }}
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxslt-dev
pip install -U poetry tox
tox
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}