feat(Workflow) Adding a test workflow

This commit is contained in:
2022-05-04 01:04:22 -04:00
parent 0caa61f42e
commit 3894406f0c
+16
View File
@@ -0,0 +1,16 @@
name: Test Workflow
on:
workflow_dispatch:
inputs:
test:
description: "Some test value"
required_test:
description: "Required test value"
required: true
default: "testing"
jobs:
test:
runs_on: ubuntu-latest
steps:
- run: >
echo "Test ${{github.event.inputs.test}} ${{github.event.inputs.required_test}}"