Skip to content

build(deps): bump actions/setup-python from 6.0.0 to 6.1.0 #93

build(deps): bump actions/setup-python from 6.0.0 to 6.1.0

build(deps): bump actions/setup-python from 6.0.0 to 6.1.0 #93

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/[email protected]
- name: Setup Python 🔧
uses: actions/[email protected]
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