Skip to content

build(deps): bump poetry from 2.1.4 to 2.2.1 #88

build(deps): bump poetry from 2.1.4 to 2.2.1

build(deps): bump poetry from 2.1.4 to 2.2.1 #88

Workflow file for this run

name: CI
permissions: read-all
on:
pull_request:
branches:
- main
- devs/**
jobs:
test:
strategy:
matrix:
python: ["3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@v5
- name: Setup Python 🔧
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Test 🔍
run: |
pip install -r requirements-poetry.txt
poetry install --sync
poetry run poe linters
poetry run poe test
poetry build