Skip to content

Commit d74ce30

Browse files
committed
manual test workflow for composite action
Signed-off-by: Martijn Govers <[email protected]>
1 parent 9745b73 commit d74ce30

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/test-action.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-FileCopyrightText: Contributors to the Power Grid Model project <[email protected]>
2+
#
3+
# SPDX-License-Identifier: MPL-2.0
4+
5+
name: Test the Action
6+
7+
on:
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}-test-action
12+
cancel-in-progress: true
13+
14+
jobs:
15+
reuse-compliance-check:
16+
runs-on: ubuntu-24.04
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: actions/setup-python@v5
21+
with:
22+
python-version: "3.12"
23+
24+
- name: Set PyPI Version
25+
uses: PowerGridModel/pgm-version-bump@main
26+
with:
27+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)