Merge pull request #227 from simopt-admin/feature/rewrite-run-solver #101
This file contains hidden or 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: "ty CI" | |
| on: | |
| push: | |
| branches: [ "master", "development", "develop" ] | |
| pull_request: | |
| branches: [ "master" , "development", "develop" ] | |
| jobs: | |
| type_checker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| run: pip install uv | |
| - name: Install Dependencies | |
| run: uv sync --all-extras | |
| - name: ty Type Checking | |
| run: uv run ty check |