Skip to content

Commit 1f6a3b3

Browse files
ci: Add automated quality validation workflow
1 parent 8a7d242 commit 1f6a3b3

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Project Sanity Check
2+
3+
on:
4+
push:
5+
branches: [ main, master ]
6+
pull_request:
7+
branches: [ main, master ]
8+
9+
jobs:
10+
verify:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Environment
17+
run: |
18+
echo "Verifying repository structure..."
19+
find . -maxdepth 2 -not -path '*/.*'

0 commit comments

Comments
 (0)