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!" + +