From 8eb0823465c4d74d71285a0999a7a811e92cfa93 Mon Sep 17 00:00:00 2001 From: snomiao Date: Thu, 14 Aug 2025 13:15:50 +0000 Subject: [PATCH] [test] Add test workflow to validate CI/CD pipeline --- .github/workflows/test-cicd.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/test-cicd.yml diff --git a/.github/workflows/test-cicd.yml b/.github/workflows/test-cicd.yml new file mode 100644 index 0000000000..df7bc1e177 --- /dev/null +++ b/.github/workflows/test-cicd.yml @@ -0,0 +1,13 @@ +name: Test CI/CD Validation +on: + pull_request: + types: [opened, synchronize] + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Validate CI/CD + run: echo "CI/CD pipeline validation successful" \ No newline at end of file