feat: use the converter utility to convert models in studio app #3
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: Coordinates Converter Test | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths: | |
- "coordinates_converter/**" | |
- ".github/workflows/converter-test.yml" | |
workflow_call: | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
cd coordinates_converter | |
pip install -r requirements.txt | |
- name: Run tests | |
run: | | |
cd coordinates_converter/tests | |
pytest -rA |