Compare commits

...

1 Commits

Author SHA1 Message Date
snomiao
8eb0823465 [test] Add test workflow to validate CI/CD pipeline 2025-08-14 13:15:50 +00:00

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"