Skip to content

fix: Description

fix: Description #7

Workflow file for this run

on:
pull_request:
branches:
- main
jobs:
unit-test:
name: test with ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py:
# currently unsupported due to ed25519 dependency (configparser)
# - "3.12"
- "3.11"
- "3.10"
- "3.9"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install tox
run: python -m pip install tox-gh>=1.2
- name: Setup test suite
run: tox -vv --notest
- name: Run test suite
run: tox --skip-pkg-install