Skip to content

Fix python version values #101

Fix python version values

Fix python version values #101

Workflow file for this run

name: CI Tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-12]
python-version: ["3.6.15", "3.7.17", "3.8.18", "3.9.18", "3.10.13", "3.12.0"]
fail-fast: false
steps:
- uses: actions/checkout@v2
- 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 -r requirements.txt
- name: Pytest
run: |
pip install pytest
pytest -v tests/