controllers: connections own health, reconnect and the retry budget #1951
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '*' | |
| pull_request: | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/_tox.yml | |
| with: | |
| tox: pre-commit,type-checking | |
| test: | |
| strategy: | |
| matrix: | |
| runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest | |
| python-version: ["3.11", "3.12", "3.13"] | |
| fail-fast: false | |
| uses: ./.github/workflows/_test.yml | |
| with: | |
| runs-on: ${{ matrix.runs-on }} | |
| python-version: ${{ matrix.python-version }} | |
| docs: | |
| uses: ./.github/workflows/_docs.yml | |
| permissions: | |
| contents: write | |
| dist: | |
| uses: ./.github/workflows/_dist.yml | |
| pypi: | |
| if: github.ref_type == 'tag' | |
| needs: [dist, test] | |
| uses: ./.github/workflows/_pypi.yml | |
| permissions: | |
| id-token: write | |
| release: | |
| if: github.ref_type == 'tag' | |
| needs: [dist, test, docs] | |
| uses: ./.github/workflows/_release.yml | |
| permissions: | |
| contents: write |