Skip to content

Update pytest requirement from <7.5.0,>=7.2.0 to >=7.2.0,<8.2.0 (#38) #25

Update pytest requirement from <7.5.0,>=7.2.0 to >=7.2.0,<8.2.0 (#38)

Update pytest requirement from <7.5.0,>=7.2.0 to >=7.2.0,<8.2.0 (#38) #25

Workflow file for this run

name: Test suite
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install Dependencies
run: pip install hatch
- name: Lint
run: hatch run test:lint
- name: Test
run: hatch run test:all