End publish listener on connection close if clean session is set to true #95
Workflow file for this run
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: API breaking changes | |
| on: | |
| pull_request: | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: swift:5.9 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| # https://github.com/actions/checkout/issues/766 | |
| - name: Mark the workspace as safe | |
| run: git config --global --add safe.directory ${GITHUB_WORKSPACE} | |
| - name: API breaking changes | |
| run: | | |
| swift package diagnose-api-breaking-changes origin/${GITHUB_BASE_REF} |