Skip to content

Commit a5d2533

Browse files
committed
Fix CI: add placeholder API keys to local.properties
The KotlinConfig generation requires API key properties to exist. Add placeholder values for anthropic, google, and openai keys.
1 parent 52f32cd commit a5d2533

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,12 @@ jobs:
2525
uses: gradle/actions/setup-gradle@v4
2626

2727
- name: Create local.properties
28-
run: touch local.properties
28+
run: |
29+
cat > local.properties << 'EOF'
30+
anthropic_api_key=placeholder
31+
google_api_key=placeholder
32+
openai_api_key=placeholder
33+
EOF
2934
3035
- name: Run JVM tests
3136
run: ./gradlew jvmTest

0 commit comments

Comments
 (0)