-
Notifications
You must be signed in to change notification settings - Fork 11
172 lines (145 loc) · 4.59 KB
/
test-action.yml
File metadata and controls
172 lines (145 loc) · 4.59 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: Test Issue Responder Action
on:
push:
branches: [main, develop]
paths:
- 'action/**'
- 'sugar/profiles/issue_responder.py'
- 'sugar/integrations/github.py'
- 'action.yml'
- '.github/workflows/test-action.yml'
pull_request:
paths:
- 'action/**'
- 'sugar/profiles/issue_responder.py'
- 'sugar/integrations/github.py'
- 'action.yml'
permissions:
contents: read
jobs:
validate-action:
name: Validate Action Configuration
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Validate action.yml syntax
run: |
# Check that action.yml exists at root
if [ ! -f action.yml ]; then
echo "Error: action.yml not found at repository root"
exit 1
fi
# Validate YAML syntax
python -c "import yaml; yaml.safe_load(open('action.yml'))"
echo "action.yml is valid YAML"
- name: Validate Dockerfile exists
run: |
if [ ! -f action/Dockerfile ]; then
echo "Error: action/Dockerfile not found"
exit 1
fi
echo "Dockerfile found"
- name: Validate entrypoint exists
run: |
if [ ! -f action/entrypoint.py ]; then
echo "Error: action/entrypoint.py not found"
exit 1
fi
echo "Entrypoint found"
- name: Check Python dependencies
run: |
if [ ! -f requirements.txt ]; then
echo "Error: requirements.txt not found"
exit 1
fi
# Check for required dependencies
grep -q "claude-agent-sdk" requirements.txt || (echo "Missing claude-agent-sdk" && exit 1)
grep -q "PyGithub" requirements.txt || (echo "Missing PyGithub" && exit 1)
echo "Dependencies look good"
test-docker-build:
name: Test Docker Build
runs-on: ubuntu-latest
needs: validate-action
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
run: |
cd action
docker build -t sugar-action:test .
- name: Verify image
run: |
docker images | grep sugar-action
test-dry-run:
name: Test Dry Run Mode
runs-on: ubuntu-latest
needs: test-docker-build
if: github.event_name == 'pull_request'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create mock issue event
run: |
mkdir -p /tmp/test-event
cat > /tmp/test-event/event.json << 'EOF'
{
"action": "opened",
"issue": {
"number": 999,
"title": "Test Issue",
"body": "This is a test issue for validating the action",
"state": "open",
"user": {
"login": "testuser",
"type": "User"
},
"labels": [],
"created_at": "2025-01-01T00:00:00Z",
"updated_at": "2025-01-01T00:00:00Z"
},
"repository": {
"full_name": "roboticforce/sugar"
}
}
EOF
- name: Test action in dry-run mode
id: test-action
continue-on-error: true
uses: ./action
with:
anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY || 'sk-test-dummy-key-for-validation' }}
github-token: ${{ secrets.GITHUB_TOKEN }}
dry-run: 'true'
confidence-threshold: '0.9'
- name: Check outputs
run: |
echo "Action completed (dry-run mode)"
echo "This validates the action structure is correct"
lint-action-code:
name: Lint Action Code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install flake8 black
- name: Lint entrypoint
run: |
flake8 action/entrypoint.py --max-line-length=88
black --check action/entrypoint.py
- name: Lint profiles
run: |
flake8 sugar/profiles/issue_responder.py --max-line-length=88
black --check sugar/profiles/issue_responder.py
- name: Lint integrations
run: |
flake8 sugar/integrations/github.py --max-line-length=88
black --check sugar/integrations/github.py