Skip to content

Update readme

Update readme #49

Workflow file for this run

name: CI
on: [push]
jobs:
test-pkg:
name: Core package tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Test with pytest
run: |
pip install pytest
pytest tests
- name: Test cli
run: |
dawtool -h