Set broker_connection_retry_on_startup = True #1161
Workflow file for this run
This file contains 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 python setup | |
"on": | |
push: | |
paths: | |
- '**.py' | |
- 'setup.cfg' | |
- .github/workflows/test-python-setup.yml | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '**.py' | |
- 'setup.cfg' | |
- .github/workflows/test-python-setup.yml | |
jobs: | |
test-python-setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- run: | | |
pip3 install pipenv | |
pipenv install | |
pipenv run pip3 freeze > requirements.txt | |
pip3 install . |