Skip to content

Enhance SDK, add feature parity, fix tests, and improve documentation #30

Enhance SDK, add feature parity, fix tests, and improve documentation

Enhance SDK, add feature parity, fix tests, and improve documentation #30

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install pipreqs
run: pip install pipreqs
- name: Generate requirements.txt
run: pipreqs . --force
- name: Install dependencies
run: |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest