Skip to content

build(deps): bump actions/checkout from 5.0.1 to 6.0.1 #94

build(deps): bump actions/checkout from 5.0.1 to 6.0.1

build(deps): bump actions/checkout from 5.0.1 to 6.0.1 #94

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/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