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

chore(deps): Bump actions/checkout from 6.0.0 to 6.0.1 #239

chore(deps): Bump actions/checkout from 6.0.0 to 6.0.1

chore(deps): Bump actions/checkout from 6.0.0 to 6.0.1 #239

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- 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