Skip to content

Update README.md

Update README.md #309

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
env:
POETRY_VERSION: 1.5.1
run: |
curl -sSL https://install.python-poetry.org | python - -y &&\
poetry config virtualenvs.create false
- name: Install dependencies
run: |
poetry install
- name: Format with black
run: |
black .
- name: Test with pytest
run: |
pytest