Setup of a single PR workflow #5
This file contains 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: Contributors to the Power Grid Model project <[email protected]> | |
# | |
# SPDX-License-Identifier: MPL-2.0 | |
name: CI Build | |
# Controls when the workflow will run | |
on: | |
# run pipeline on pull request | |
pull_request: | |
# run pipeline on merge queue | |
merge_group: | |
# run this workflow manually from the Actions tab | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-ci-build | |
cancel-in-progress: true | |
jobs: | |
main: | |
uses: "./.github/workflows/main.yml" | |
permissions: | |
contents: write | |
with: | |
release: false | |
clang-tidy-target: "all power_grid_model_benchmark_cpp" |