Add support for Florence-2 #193
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: Test PRs | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
run: | | |
brew install python@3.10 | |
python3 -m venv env | |
source env/bin/activate | |
- name: Run style checks | |
run: | | |
pip install pre-commit | |
pre-commit run --all | |
if ! git diff --quiet; then echo 'Style checks failed, please install pre-commit and run pre-commit run --all and push the change'; exit 1; fi | |
- name: Install dependencies | |
run: | | |
pip install pytest | |
pip install -e . | |
- name: Run Python tests | |
run: | | |
cd mlx_vlm/ | |
pytest -s ./tests |