Skip to content

Fix python < 3.8 compatibility #30

Fix python < 3.8 compatibility

Fix python < 3.8 compatibility #30

Workflow file for this run

name: Python package tests
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pre-commit/[email protected]
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test
run: tox