Bump types-setuptools from 81.0.0.20260209 to 82.0.0.20260210 #425
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: main | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Poetry | |
| run: curl -sSL https://install.python-poetry.org | python - | |
| - name: Check dependencies | |
| run: make doctor | |
| - uses: actions/cache@v4 | |
| with: | |
| path: .venv | |
| key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | |
| - name: Install dependencies | |
| run: make install | |
| - name: Test code | |
| run: make test | |
| - name: Check code | |
| run: make check | |
| - name: Run Demo | |
| run: make demo | |
| - name: Upload coverage | |
| uses: codecov/codecov-action@v4 | |
| if: steps.fork-check.outputs.is-fork == 'false' | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |