Skip to content

update readme and contributing #121

update readme and contributing

update readme and contributing #121

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[numba]
python -m pip install matplotlib scikit-learn
- name: Run unit tests with unittest
run: |
python -m unittest discover -s tests -p "test_*.py"