Skip to content

add a setup script and github actions to test #1

add a setup script and github actions to test

add a setup script and github actions to test #1

Workflow file for this run

name: Test and Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup
run: ./setup.sh
- name: Install python dependencies
run: poetry install
- name: Test
run: poetry run python -m unittest tests/**.py