Skip to content

add api definition

add api definition #6

Workflow file for this run

name: Python Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
- name: Run tests
run: for file in $(find . -name "test_*.py"); do python $file; done