Implement release.yml to use trusted-publishing for pushing to Pypi (for testing TestPyPI for now) #209
Workflow file for this run
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: Lila integration test | |
| on: | |
| push: | |
| branches: ["master"] | |
| paths: | |
| - ".github/workflows/integration_test.yml" | |
| - "integration/**" | |
| - "**.py" | |
| - "uv.lock" | |
| - "pyproject.toml" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/integration_test.yml" | |
| - "integration/**" | |
| - "**.py" | |
| - "uv.lock" | |
| - "pyproject.toml" | |
| jobs: | |
| lila: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 # latest | |
| - name: Run integration tests | |
| run: | | |
| ./integration/local.py --python ${{ matrix.python-version }} |