Skip to content

add workflow

add workflow #4

Workflow file for this run

name: Run Tests
on: [push]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -e .
pip install pytest
- name: Run tests
run: |
pytest tests/