Skip to content

Remove deprecated imp module #36

Remove deprecated imp module

Remove deprecated imp module #36

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: Run tests
on: [ push, pull_request ]
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
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 tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox