Skip to content

Update unregister implementation to remove all references to the previously registered function #45

Update unregister implementation to remove all references to the previously registered function

Update unregister implementation to remove all references to the previously registered function #45

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.6", "3.7", "3.8", "3.9", "3.10"]
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