Skip to content

Merge branch 'examples-dev' of https://github.com/TristanThrush/perpl… #68

Merge branch 'examples-dev' of https://github.com/TristanThrush/perpl…

Merge branch 'examples-dev' of https://github.com/TristanThrush/perpl… #68

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
pip install pytest
pip install -e .
- name: Run tests
run: |
pytest