build(deps-dev): bump twine from 6.2.0 to 7.0.0 #460
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: "Test Dev Environment" | |
| # Checks that the dev environment (uv sync --group dev) can be set up. | |
| # This might not work, if different linting/testing groups refer to different versions of the same lib (e.g. typing-extensions). | |
| # Different versions of the same package might work for isolated specific groups (only linting, only testing...) but the dev group inherits from all of them. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: {} | |
| jobs: | |
| check: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13", "3.14"] | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v9.0.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Create a Dev Environment | |
| run: uv sync --group dev |