feat: shared model manager #16
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 | |
on: | |
pull_request: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python version | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: 'poetry' | |
- name: qr-reader tests | |
run: | | |
make install-qr-reader | |
make test-qr-reader | |
- name: owlv2 tests | |
run: | | |
make install-owlv2 | |
make test-owlv2 | |
- name: zeroshot-counting tests | |
run: | | |
make install-zeroshot-counting | |
make test-zeroshot-counting | |
- name: depth-anything-v2 tests | |
run: | | |
make install-depth-anything-v2 | |
make test-depth-anything-v2 | |