Skip to content

.github/workflows/test-dispatch.yml #11

.github/workflows/test-dispatch.yml

.github/workflows/test-dispatch.yml #11

Workflow file for this run

name: "Dispatch"
on:
workflow_dispatch:
inputs:
version:
description: "Version tag"
required: true
type: string
jobs:
go-version:
uses: ./.github/workflows/go-version.yml
test:
needs: go-version
name: Test
uses: ./.github/workflows/tests.yml
with:
esdb_repository: "docker.eventstore.com/eventstore-preview/eventstoredb-ee"
esdb_version: ${{ inputs.version }}
go_version: ${{ needs.go-version.outputs.go_version }}
plugins-tests:
needs: go-version
name: Plugins Tests
uses: ./.github/workflows/plugins-tests.yml

Check failure on line 27 in .github/workflows/test-dispatch.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-dispatch.yml

Invalid workflow file

error parsing called workflow ".github/workflows/test-dispatch.yml" -> "./.github/workflows/plugins-tests.yml" : failed to fetch workflow: workflow was not found.
with:
esdb_version: ${{ inputs.version }}
go_version: ${{ needs.go-version.outputs.go_version }}
esdb_repository: "docker.eventstore.com/eventstore-ee/eventstoredb-commercial"
secrets: inherit