Skip to content

Issue 150

Issue 150 #421

Workflow file for this run

name: Poetry
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
run-tests:
name: Python ${{ matrix.python-version }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 9
fail-fast: false
matrix:
python-version: ["3.13"]
os: [ubuntu-latest]
poetry-version: ["2.1.3"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Check lock file is consistent with pyproject
run: poetry check --lock