[test] Add test workflow to validate CI/CD pipeline

This commit is contained in:
snomiao
2025-08-14 13:15:50 +00:00
parent 89c78b0ecb
commit 8eb0823465

13
.github/workflows/test-cicd.yml vendored Normal file
View File

@@ -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"