Skip to content

Commit

Permalink
add: test runner workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvija Tovernic committed Sep 18, 2024
1 parent 9b4ee60 commit 425b373
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: _Test Workflow

on:
workflow_dispatch:
inputs:
runsOn:
description: 'Runs-On: Runner'
required: true
default: 'self-hosted'
type: string
command:
description: 'run: Command'
required: true
default: 'echo "test"'
type: string

jobs:
build:
runs-on: ${{ inputs.runsOn }}
steps:
- name: Run Command
run: ${{ inputs.command }}

0 comments on commit 425b373

Please sign in to comment.