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 b398458 commit d72e9b5Copy full SHA for d72e9b5
.github/workflows/test-workflow.yml
@@ -0,0 +1,18 @@
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
+name: Test workflow
9
10
+on:
11
+ workflow_dispatch:
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Test step
18
+ run: echo "Test workflow running"
0 commit comments