Skip to content

Commit 80a7cf7

Browse files
committed
Add debugging workflow
1 parent 38daeeb commit 80a7cf7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/debug-stuff.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test All The Things
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
clojureRepo:
7+
description: "Repository name with owner."
8+
required: true
9+
default: 'clojure/clojure'
10+
clojureRef:
11+
description: "The branch, tag or SHA to checkout"
12+
required: true
13+
default: 'master'
14+
15+
jobs:
16+
test-xtdb:
17+
uses: ./.github/workflows/test-lein-repo.yml
18+
with:
19+
clojureRepo: ${{ inputs.clojureRepo }}
20+
clojureRef: ${{ inputs.clojureRef }}
21+
subjectRepo: 'xtdb/xtdb'
22+
subjectRef: 'main'

0 commit comments

Comments
 (0)