Bump urllib3 from 2.5.0 to 2.6.3 #182
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: tests | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup python3.10 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.10" | |
| - uses: astral-sh/setup-uv@v5 | |
| - run: uv sync | |
| - run: uv run ruff check | |
| env: | |
| FORCE_COLOR: 1 | |
| mypy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup python3.10 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.10" | |
| - uses: astral-sh/setup-uv@v5 | |
| - run: uv sync | |
| - run: uv run mypy | |
| env: | |
| FORCE_COLOR: 1 | |
| docs: | |
| runs-on: ubuntu-latest | |
| services: | |
| rabbitmq: | |
| image: docker://mosquito/aiormq-rabbitmq | |
| ports: | |
| - 5671:5671 | |
| - 5672:5672 | |
| - 15671:15671 | |
| - 15672:15672 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup python3.10 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.10" | |
| - uses: astral-sh/setup-uv@v5 | |
| - run: uv sync | |
| - run: uv run pytest -svv README.rst | |
| env: | |
| AMQP_URL: amqp://guest:guest@localhost// | |
| FORCE_COLOR: 1 | |
| tests: | |
| runs-on: ubuntu-latest | |
| services: | |
| rabbitmq: | |
| image: docker://mosquito/aiormq-rabbitmq | |
| ports: | |
| - 5671:5671 | |
| - 5672:5672 | |
| - 15671:15671 | |
| - 15672:15672 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python: | |
| - '3.10' | |
| - '3.11' | |
| - '3.12' | |
| - '3.13' | |
| - '3.14' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup python${{ matrix.python }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "${{ matrix.python }}" | |
| - uses: astral-sh/setup-uv@v5 | |
| - run: uv sync --group uvloop | |
| - name: pytest | |
| run: >- | |
| uv run pytest \ | |
| -vv \ | |
| --cov=aiormq \ | |
| --cov-report=term-missing \ | |
| --doctest-modules \ | |
| --aiomisc-test-timeout=120 \ | |
| tests | |
| env: | |
| AMQP_URL: amqp://guest:guest@localhost// | |
| FORCE_COLOR: 1 | |
| - run: uv run coveralls | |
| env: | |
| COVERALLS_PARALLEL: 'true' | |
| COVERALLS_SERVICE_NAME: github | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| finish: | |
| needs: | |
| - tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Coveralls Finished | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.github_token }} | |
| parallel-finished: true |