Skip to content

Nightly build

Nightly build #9

Workflow file for this run

# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
#
# SPDX-License-Identifier: MPL-2.0
name: Nightly build
# Controls when the workflow will run
on:
workflow_dispatch:
schedule:
- cron: "0 2 * * *" # Based on UTC time
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
main:
uses: "./.github/workflows/main.yml"
permissions:
contents: write
with:
create_release: false
cancel_in_progress: false
clang-tidy:
uses: "./.github/workflows/clang-tidy.yml"
with:
target: power_grid_model_c
# target: "all power_grid_model_benchmark_cpp" # TODO(mgovers): re-enable when more clang-tidy stuff is fixed
cancel_in_progress: false