Add siglip_config.yaml as a SigLIP training template #881
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: launcher | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./launcher_scripts | |
steps: | |
- name: checkout the repo | |
uses: actions/checkout@v3 | |
- name: install dependencies | |
run: | | |
python -m pip install pytest requests-mock -r requirements.txt | |
- name: run unit tests | |
run: PYTHONPATH=$PWD pytest | |
working-directory: ${{env.working-directory}} |