Add Embedding Tests #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |