From 3b81f140f9330374465056252bfc8685dc7f9caa Mon Sep 17 00:00:00 2001 From: Chris Fredrickson Date: Fri, 26 Jan 2024 14:33:53 -0500 Subject: [PATCH] Add new workflow file --- .github/workflows/test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..c027425 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,10 @@ +name: Test 1 +'on': +- pull_request +jobs: + testing: + runs-on: + - ubuntu-latest + steps: + - name: Run the Test + run: echo "hello world" \ No newline at end of file