-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (38 loc) · 1.12 KB
/
debug-stuff.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Debug
on:
workflow_dispatch:
inputs:
clojureRepo:
description: "Repository name with owner."
required: true
default: 'clojure/clojure'
clojureRef:
description: "The branch, tag or SHA to checkout"
required: true
default: 'master'
jobs:
test-clj-yaml:
uses: ./.github/workflows/deps-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
testCmd: '-M:test'
testDir: '.'
subjectRepo: 'clj-commons/clj-yaml'
subjectRef: 'master'
test-durable-queue:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
subjectRepo: 'clj-commons/durable-queue'
subjectRef: 'master'
test-seesaw:
uses: ./.github/workflows/lein-test.yml
with:
clojureRepo: ${{ inputs.clojureRepo }}
clojureRef: ${{ inputs.clojureRef }}
testCmd: 'run -m lazytest.main test'
testDir: '.'
subjectRepo: 'clj-commons/seesaw'
subjectRef: 'master'