-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vincent Koppen <[email protected]>
- Loading branch information
1 parent
feaaed3
commit 7a87705
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <[email protected]> | ||
# | ||
# 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 }}-nightly | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
main: | ||
uses: "./.github/workflows/build-test-and-sonar.yml" | ||
permissions: | ||
contents: write | ||
with: | ||
create_release: false | ||
|
||
check-code-quality: | ||
uses: "./.github/workflows/check-code-quality.yml" | ||
|
||
reuse-compliance: | ||
uses: "./.github/workflows/reuse-compliance.yml" |