Skip to content
This repository was archived by the owner on May 23, 2025. It is now read-only.

Bump the minor-and-patch group across 2 directories with 12 updates #53

Bump the minor-and-patch group across 2 directories with 12 updates

Bump the minor-and-patch group across 2 directories with 12 updates #53

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch: {}
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- name: Install Package
run: poetry install
- name: Test Package
run: cp .env.example .env && poetry run pytest