Skip to content

Bump pytest from 8.2.0 to 8.2.1 #89

Bump pytest from 8.2.0 to 8.2.1

Bump pytest from 8.2.0 to 8.2.1 #89

Workflow file for this run

name: Testing
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, 3.10.x, 3.11]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install -r requirements-test.txt
- name: Test with pytest
run: |
pytest ./tests