From 3e910d8da6405532882650b31d84e9b5953cb7b4 Mon Sep 17 00:00:00 2001 From: James Garriss <52328727+james-garriss@users.noreply.github.com> Date: Mon, 22 Jan 2024 14:56:49 -0500 Subject: [PATCH] Create test_trigger.yaml Add workflow --- .github/workflows/test_trigger.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/test_trigger.yaml diff --git a/.github/workflows/test_trigger.yaml b/.github/workflows/test_trigger.yaml new file mode 100644 index 0000000..d4598d2 --- /dev/null +++ b/.github/workflows/test_trigger.yaml @@ -0,0 +1,12 @@ +name: Trigger Test + +on: + push: + +jobs: + trigger-test: + runs-on: ubuntu-latest + steps: + - name: Call print + run: python3 /print.py +