Skip to content

poetry version: 3.13.0 -> 3.13.1 #730

poetry version: 3.13.0 -> 3.13.1

poetry version: 3.13.0 -> 3.13.1 #730

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 libjpeg-dev
pip install poetry==2.1.1 tox==4.28.4
tox
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}