build(deps): bump python-dotenv from 1.2.2 to 1.2.3 #286
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: "Test Dev Environment" | |
| # Checks that the dev dependency group can be synced. | |
| # This might not work, if different linting/testing groups refer to different versions of the same lib. | |
| # 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: Set up uv | |
| uses: astral-sh/setup-uv@v10.0.1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Sync the Dev Dependency Group | |
| run: | | |
| uv sync --group dev --extra cli --extra mcp |