Pipeline Dev #2709
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: Pipeline Dev | |
| on: | |
| pull_request: | |
| merge_group: | |
| # Supersede in-flight runs for the same PR. Never applied to merge_group: those runs gate the | |
| # queue and cancelling one would drop a merge. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| check: | |
| name: Codestyle & Tests | |
| uses: ./.github/workflows/check.yaml | |
| secrets: inherit |