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 9745b73 commit d74ce30Copy full SHA for d74ce30
.github/workflows/test-action.yml
@@ -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
27
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments