Skip to content

Update README.md

Update README.md #47

Workflow file for this run

name: pytest
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Build package
run: |
maturin build
python3 -m pip install ./target/wheels/*.whl
- name: Run pytest
run: |
pytest