Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

chore(deps): Bump actions/setup-python from 5.6.0 to 6.0.0 #214

chore(deps): Bump actions/setup-python from 5.6.0 to 6.0.0

chore(deps): Bump actions/setup-python from 5.6.0 to 6.0.0 #214

Workflow file for this run

name: Test
on:
pull_request: {}
push:
branches: [main]
workflow_dispatch:
inputs: {}
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest