Skip to content

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

.github/workflows/test-dispatch.yml

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

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_version: ${{ inputs.version }}
go_version: ${{ needs.go-version.outputs.go_version }}