Skip to content

Add Embedding Tests #41

Add Embedding Tests

Add Embedding Tests #41

Workflow file for this run

---
name: Unit Tests
permissions: read-all
on:
pull_request:
branches:
- main
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install requirements
run: |
python -m pip install pytest
python -m pip install -r requirements.txt
- name: Basic Unit Test
run: pytest test/test.py -W ignore::DeprecationWarning