Skip to content

Update README.md

Update README.md #38

Workflow file for this run

name: Python API
on: [push]
jobs:
test:
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.10.11
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest tests/test_apis.py