From 4565493733dcaaedc5f8653074b8e5af39da4cd9 Mon Sep 17 00:00:00 2001 From: Joe Cummings Date: Thu, 14 Aug 2025 16:10:15 -0400 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..41e86c8e8 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +name: PR Test + +on: + pull_request: + +jobs: + test-pr: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Say hello + run: echo "✅ This PR workflow has triggered successfully!" + +