Skip to content

Add cleanup to be called when future is garbage collected #18

Add cleanup to be called when future is garbage collected

Add cleanup to be called when future is garbage collected #18

Workflow file for this run

---
name: build
on: push
jobs:
tox:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
python:
- py27
- py36
- py37
httplib:
- default
- fido
- fido-requests2dot17
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install tox
- run: tox -e ${{ matrix.python }}-${{ matrix.httplib }}
misc:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
tox:
- mypy
- pre-commit
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install tox
- run: tox -e ${{ matrix.tox }}