Skip to content

bump versions + test latest python versions #59

bump versions + test latest python versions

bump versions + test latest python versions #59

Workflow file for this run

name: test
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Setup Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements 📦
run: |
pip install -r requirements-test.txt
pip install .
- name: Run unit tests ⚙️
run: |
pytest