Skip to content

test: add test cases. #4

test: add test cases.

test: add test cases. #4

Workflow file for this run

name: Test
on:
push:
pull_request:
release:
types: [ created ]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install poetry && poetry install
- name: Test
run: poetry run pytest -v