Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
cancel-in-progress: true

env:
POETRY_VERSION: "1.7.1"
POETRY_VERSION: "2.1.1"

jobs:
build:
Expand All @@ -38,14 +38,10 @@ jobs:
poetry-version: ${{ env.POETRY_VERSION }}
cache-key: core

- name: Install dependencies
- name: Install together with dependencies
shell: bash
run: poetry install --with quality,tests

- name: Install together
run: |
poetry run pip install .

- name: Run integration tests
shell: bash
env:
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/upload-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
release:
types: [published]

env:
POETRY_VERSION: "2.1.1"

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -13,13 +16,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
- name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
uses: "./.github/actions/poetry_setup"
with:
python-version: ${{ matrix.python-version }}

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -
poetry-version: ${{ env.POETRY_VERSION }}
cache-key: core

- name: Set up cache
uses: actions/cache@v4
Expand Down
Loading