Add workflow_dispatch to allow manual run of workflow

This commit is contained in:
Holger Obermaier 2023-09-13 11:23:09 +02:00
parent 262a119413
commit 562bcbf486

View File

@ -4,7 +4,9 @@
name: Run Test name: Run Test
# Run on event push # Run on event push
on: push on:
push:
workflow_dispatch:
jobs: jobs:
# #
@ -23,7 +25,7 @@ jobs:
# See: https://github.com/marketplace/actions/setup-go-environment # See: https://github.com/marketplace/actions/setup-go-environment
- name: Setup Golang - name: Setup Golang
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: '1.18.2' go-version: '1.18.2'
@ -49,7 +51,7 @@ jobs:
# See: https://github.com/marketplace/actions/setup-go-environment # See: https://github.com/marketplace/actions/setup-go-environment
- name: Setup Golang - name: Setup Golang
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: '1.19' go-version: '1.19'
@ -75,7 +77,7 @@ jobs:
# See: https://github.com/marketplace/actions/setup-go-environment # See: https://github.com/marketplace/actions/setup-go-environment
- name: Setup Golang - name: Setup Golang
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: '1.20' go-version: '1.20'