Skip to content

.github/workflows/debug-stuff.yml #35

.github/workflows/debug-stuff.yml

.github/workflows/debug-stuff.yml #35

Workflow file for this run

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: '.'

Check failure on line 38 in .github/workflows/debug-stuff.yml

View workflow run for this annotation

GitHub Actions / Debug

Invalid workflow file

The workflow is not valid. .github/workflows/debug-stuff.yml (Line: 38, Col: 18): Invalid input, testDir is not defined in the referenced workflow.
subjectRepo: 'clj-commons/seesaw'
subjectRef: 'master'