Bump urllib3 from 2.5.0 to 2.6.0 #22
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: check | |
| on: | |
| - push | |
| - pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/[email protected] | |
| - name: Set up Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: "3.10" | |
| - name: Set up poetry | |
| uses: abatilo/[email protected] | |
| with: | |
| poetry-version: "2.1.4" | |
| - name: Install dependencies | |
| run: poetry install --only main,dev | |
| - name: Run linter | |
| run: poetry run poe lint | |
| - name: Run formatter | |
| run: poetry run poe format | |
| - name: Run version check | |
| run: poetry run poe versioncheck | |
| - name: Run license check | |
| run: poetry run poe licensecheck --requirements-paths=pyproject.toml | |
| - name: Install test dependencies | |
| run: poetry install --only main,dev,test | |
| - name: Run tests | |
| run: poetry run poe test --cov-branch --cov-report=xml --junitxml=junit.xml -o junit_family=legacy | |
| - name: Run type checking | |
| run: poetry run poe typecheck |