Migrate SCT verbose filter and datarouter filter tests to integration #236
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
| # ******************************************************************************* | |
| # Copyright (c) 2026 Contributors to the Eclipse Foundation | |
| # | |
| # See the NOTICE file(s) distributed with this work for additional | |
| # information regarding copyright ownership. | |
| # | |
| # This program and the accompanying materials are made available under the | |
| # terms of the Apache License Version 2.0 which is available at | |
| # https://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| # ******************************************************************************* | |
| name: CPP coverage | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| merge_group: | |
| types: [checks_requested] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| approval: | |
| name: coverage approval gate | |
| if: github.event_name == 'pull_request' | |
| environment: workflow-approval | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - name: Blocking on approval | |
| run: 'true' | |
| coverage-report: | |
| if: ${{ !cancelled() }} | |
| needs: approval | |
| uses: eclipse-score/cicd-workflows/.github/workflows/cpp-coverage.yml@main | |
| with: | |
| bazel-target: "//..." | |
| extra-bazel-flags: "--lockfile_mode=error --test_tag_filters=-integration" |