fix: set SO_REUSEADDR before bind to allow multiple processes on mult… #26
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: python | |
| on: | |
| pull_request: | |
| push: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: xbot_service_interface_py | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install | |
| run: pip install -e ".[dev]" | |
| - name: Test | |
| run: pytest | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: test | |
| defaults: | |
| run: | |
| working-directory: xbot_service_interface_py | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Build | |
| run: | | |
| pip install build | |
| python -m build | |
| - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
| with: | |
| name: dist | |
| path: xbot_service_interface_py/dist/ | |
| publish: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4 | |
| with: | |
| name: dist | |
| path: dist/ | |
| - name: Create GitHub Release | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| GH_REPO: ${{ github.repository }} | |
| run: | | |
| TAG="${{ github.ref_name }}" | |
| REPO="${{ github.repository }}" | |
| printf '## Install\n\n```bash\npip install "xbot-service-interface-py @ git+https://github.com/%s.git@%s#subdirectory=xbot_service_interface_py"\n# with IPython shell extras:\npip install "xbot-service-interface-py[shell] @ git+https://github.com/%s.git@%s#subdirectory=xbot_service_interface_py"\n```\n' \ | |
| "$REPO" "$TAG" "$REPO" "$TAG" > /tmp/release_notes.md | |
| gh release create "$TAG" dist/* \ | |
| --title "xbot-service-interface-py $TAG" \ | |
| --notes-file /tmp/release_notes.md |