Skip to content

Update readme.md

Update readme.md #48

Workflow file for this run

name: Python
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
fail-fast: true
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@master
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
echo "Installing dependencies"
python3 -m venv .venv
source .venv/bin/activate
pip install -U pip setuptools wheel poetry pytest
poetry install
pytest tests/