CI: add poetry lock file check job and update poetry lock (#3343)

This commit is contained in:
dni ⚡ 2025-09-02 18:50:59 +02:00 committed by GitHub
parent 59553a6e1e
commit 213bde61a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 31 additions and 4 deletions

24
.github/workflows/poetry.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: poetry
on:
workflow_call:
inputs:
python-version:
description: "python version"
type: string
default: "3.10"
jobs:
poetry:
name: run poetry install to check lock file
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- name: set up python ${{ inputs.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}
- name: install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install