fix: emit pool config INFO log once at top level #1435
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 (unit) | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| unit: | |
| uses: ./.github/workflows/run_tests.yml | |
| with: | |
| marker: 'not integration' | |
| secrets: inherit | |
| # Cancel in-flight runs for the same branch/PR when new commits arrive | |
| concurrency: | |
| group: ci-unit-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true |