We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feaaed3 commit 7a87705Copy full SHA for 7a87705
.github/workflows/nightly.yml
@@ -0,0 +1,29 @@
1
+# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <[email protected]>
2
+#
3
+# SPDX-License-Identifier: MPL-2.0
4
+
5
+name: Nightly build
6
7
+# Controls when the workflow will run
8
+on:
9
+ workflow_dispatch:
10
+ schedule:
11
+ - cron: "0 2 * * *" # Based on UTC time
12
13
+concurrency:
14
+ group: ${{ github.workflow }}-${{ github.ref }}-nightly
15
+ cancel-in-progress: true
16
17
+jobs:
18
+ main:
19
+ uses: "./.github/workflows/build-test-and-sonar.yml"
20
+ permissions:
21
+ contents: write
22
+ with:
23
+ create_release: false
24
25
+ check-code-quality:
26
+ uses: "./.github/workflows/check-code-quality.yml"
27
28
+ reuse-compliance:
29
+ uses: "./.github/workflows/reuse-compliance.yml"
0 commit comments