-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.01 KB
/
ci.yml
File metadata and controls
46 lines (40 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main]
jobs:
validate:
name: Validate Repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Check Go syntax
run: |
find . -name "*.go" -not -path "./vendor/*" | while read f; do
gofmt -l "$f"
done
echo "Syntax check complete"
- name: Validate project structure
run: |
for dir in core consensus vm rpc sdk cmd; do
if [ -d "$dir" ]; then
echo "OK: $dir"
else
echo "WARNING: $dir missing"
fi
done
- name: Validate documentation
run: |
for f in README.md CONTRIBUTING.md SECURITY.md LICENSE; do
if [ -f "$f" ]; then
echo "OK: $f"
else
echo "MISSING: $f"
fi
done