Skip to content

Update ruff requirement from >=0.5,<0.12 to >=0.5,<0.14 #14

Update ruff requirement from >=0.5,<0.12 to >=0.5,<0.14

Update ruff requirement from >=0.5,<0.12 to >=0.5,<0.14 #14

Workflow file for this run

name: pytest
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/actions-poetry@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install --with dev
- name: Test with pytest
run: make pytest