Skip to content

version bump to 3.1 #161

version bump to 3.1

version bump to 3.1 #161

name: pytest
on:
push:
branches: ['master']
jobs:
pytest:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
include:
- os: windows-latest
python-version: '3.7'
- os: ubuntu-latest
python-version: '3.7'
- os: macos-12
python-version: '3.7'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
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 pip
pip install -r requirements.txt
pip install pytest
- name: Install from source (required for the pre-commit tests)
run: pip install .
- name: Test with pytest
run: |
pytest -v