Skip to content

Use py3.9 instead of py3.8 #12

Use py3.9 instead of py3.8

Use py3.9 instead of py3.8 #12

Workflow file for this run

name: pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11"]
fail-fast: false
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: |
python -m pip install --upgrade pip
pip install pytest tox
pip install -e .
- name: Test with tox
run: |
tox -p