Skip to content

Bump pytest from 7.4.0 to 7.4.1 in /python #31

Bump pytest from 7.4.0 to 7.4.1 in /python

Bump pytest from 7.4.0 to 7.4.1 in /python #31

Workflow file for this run

name: Pytest
on:
push:
branches:
- '**'
paths:
- 'python/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "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: |
cd python
python -m pip install --upgrade pip
pip install .
pip install --use-pep517 -r ./requirements.txt
- name: Test with pytest
run: |
cd python
pytest