Skip to content

fix: complete API integration with working examples #21

fix: complete API integration with working examples

fix: complete API integration with working examples #21

Workflow file for this run

name: Code Quality
on:
push:
branches: [ master, main, develop ]
pull_request:
branches: [ master, main, develop ]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -e .
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files