Skip to content

Update readme

Update readme #7

Workflow file for this run

name: Run tests
on: [push]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8.6'
- name: Install pytest
run: pip install pytest
- name: Install pactus
run: pip install .
- name: Run tests
run: python -m pytest