Skip to content

ADD initial implementation #6

ADD initial implementation

ADD initial implementation #6

Workflow file for this run

name: Python Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Run Python 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.11
- name: Install dependencies
run: pip install .
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest tests/