Skip to content

Each iter-paged call uses its own thread-pool #37

Each iter-paged call uses its own thread-pool

Each iter-paged call uses its own thread-pool #37

name: test
on:
pull_request:
branches:
- main
push:
branches:
- main
- ver/*
tags:
- v*
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 package
run: pip install .
- name: Test package
run: python -c 'import swf_typed'
# TODO: add unit-testing (and linting?)