Skip to content

Implement install_pair() on runner #4

Implement install_pair() on runner

Implement install_pair() on runner #4

Workflow file for this run

# Run unit tests on push.
# Loosely based on https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#using-multiple-python-versions
name: Python test
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04 # 20.04 supports all supported Python versions.
- macos-latest
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install .
- name: Test
run: python -m unittest discover -s tests