Skip to content

chore(deps-dev): Update ruff requirement from ^0.0.284 to >=0.0.284,<0.0.286 #8

chore(deps-dev): Update ruff requirement from ^0.0.284 to >=0.0.284,<0.0.286

chore(deps-dev): Update ruff requirement from ^0.0.284 to >=0.0.284,<0.0.286 #8

Workflow file for this run

name: "TEST: Run pytest using tox"
on: [push, pull_request]
jobs:
tox-pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade poetry
poetry install
- name: Test with pytest
run: |
poetry run tox -e py