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 652940d commit 12d0cddCopy full SHA for 12d0cdd
.github/workflows/run-build-and-test.yml
@@ -0,0 +1,23 @@
1
+# .github/workflows/run-build-and-test.yml
2
+
3
+name: Run Build and Test (manual)
4
5
+on:
6
+ workflow_dispatch:
7
+ inputs:
8
+ java-version:
9
+ description: Java version (Temurin)
10
+ required: false
11
+ default: '21'
12
+ python-version:
13
+ description: Python version
14
15
+ default: '3.11'
16
17
+jobs:
18
+ run-core-build-and-test:
19
+ uses: ./.github/workflows/build-and-test.yml
20
+ with:
21
+ java-version: ${{ inputs.java-version }}
22
+ python-version: ${{ inputs.python-version }}
23
+ secrets: inherit
0 commit comments