Skip to content

Update unregister implementation to remove all references to the prev… #47

Update unregister implementation to remove all references to the prev…

Update unregister implementation to remove all references to the prev… #47

Workflow file for this run

name: CI
on:
workflow_dispatch:
paths:
- "*"
pull_request:
paths:
- "**.py"
push:
paths:
- "**.py"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-20.04", "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install
run: |
pip install -e .
pip install -r requirements_test.txt
- name: Run tests
run: pytest