fix(STEF-2854): handle backtest robustness issues #640
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
| # SPDX-FileCopyrightText: 2025 Contributors to the OpenSTEF project <[email protected]> | |
| # SPDX-License-Identifier: MPL-2.0 | |
| name: Quality Check | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| # push: # Disabled until release of v4.0.0 | |
| # branches: ['main'] | |
| pull_request: | |
| types: [opened, synchronize, reopened, closed] | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| name: Quality Checks | |
| uses: ./.github/workflows/_job_quality_check.yaml |