build(deps): bump franz-go and set 9m conn idle timeout default #1960
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: system-test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| run-system-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # This step is skipped if the pull request is from a forked repository | |
| # In that case the job just creates a green status check on the pull request. | |
| - if: | | |
| ( github.event_name != 'pull_request' | |
| || | |
| github.event.pull_request.head.repo.full_name == github.repository | |
| ) | |
| uses: ./.github/actions/system-test |