Skip to content

update readme

update readme #10

Workflow file for this run

name: test-python
on: [push]
jobs:
build-test-python:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: [
"3.10",
"3.11",
"3.12",
]
architecture: [x64]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python-version}}
architecture: ${{matrix.architecture}}
- name: Install library
run: |
python -m pip install --upgrade pip
pip install -e .[test] -v
- name: Test with coverage
run: |
coverage run -m --source=iohclustering unittest discover
coverage report -m