Skip to content

👽️ Bump python in redered code to 3.10 . #153

👽️ Bump python in redered code to 3.10 .

👽️ Bump python in redered code to 3.10 . #153

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.12'
- '3.13'
- '3.13t'
- '3.14'
- '3.14t'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Poetry
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: ${{ matrix.python-version }}
poetry-version: 2.3.2
- name: Install project
run: poetry install
- name: Run pytest
run: poetry run pytest -s