Skip to content

Commit e47f907

Browse files
authored
Merge pull request #945 from PowerGridModel/add-test-workflow
Add test workflow
2 parents b398458 + f0a1b70 commit e47f907

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test-workflow.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)