Skip to content

Update poethepoet requirement from <0.31 to <0.32 #65

Update poethepoet requirement from <0.31 to <0.32

Update poethepoet requirement from <0.31 to <0.32 #65

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
max-parallel: 5
matrix:
python-version: ['3.9', '3.13']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set timezone
uses: szenius/set-timezone@v2.0
- name: Set up project
run: |
# Install package in editable mode.
uv pip install --system --editable='.[develop,test]'
- name: Run linters and software tests
run: poe check