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.
2 parents b398458 + f0a1b70 commit e47f907Copy full SHA for e47f907
.github/workflows/test-workflow.yml
@@ -0,0 +1,20 @@
1
+# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <powergridmodel@lfenergy.org>
2
+#
3
+# SPDX-License-Identifier: MPL-2.0
4
+
5
+# This file works as a placeholder for new workflows to be tested
6
+# in the GitHub actions tab before being merged.
7
+# It is not intended to be used in the main branch, but rather in PRs.
8
+# After testing, this workflow should be returned to the original state;
9
+# this is checked by the check-code-quality workflow.
10
+name: Test workflow
11
12
+on:
13
+ workflow_dispatch:
14
15
+jobs:
16
+ test:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Test step
20
+ run: echo "Test workflow running"
0 commit comments