Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Update README.md

Update README.md #4

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/python-poetry-env
with:
python-version: ${{ matrix.python-version }}
- run: poetry run pytest tests