Skip to content

Commit fcd24b2

Browse files
committed
Debugging
1 parent 4c2e00e commit fcd24b2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/debug-stuff.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ jobs:
2121
subjectRepo: 'scicloj/metamorph.ml'
2222
subjectRef: 'main'
2323
testDir: '.'
24-
testCmd: '-A:test -m kaocha.runner'
24+
testCmd: '-A:test -m kaocha.runner'
25+
javaVersion: '["11", "17", "21"]'

.github/workflows/test-deps-repo.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,17 @@ on:
2828
description: "Command to invoke test run"
2929
type: string
3030
required: true
31+
javaVersion:
32+
description: 'Java version to use for the build'
33+
required: false
34+
default: '["8", "11", "17", "21"]'
35+
type: string
3136

3237
jobs:
3338
test:
3439
strategy:
3540
matrix:
36-
java-version: ["8", "11", "17", "21"]
41+
java-version: ${{ fromJson(inputs.javaVersion) }}
3742

3843
runs-on: ubuntu-latest
3944

0 commit comments

Comments
 (0)