We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 226f55b commit 8a9ab65Copy full SHA for 8a9ab65
1 file changed
.github/workflows/test-tier1.yml
@@ -27,6 +27,15 @@ jobs:
27
env:
28
GOOGLE_API_KEY: ${{ secrets.GEMINI_API_KEY }}
29
run: |
30
+ # Configure Goose
31
+ mkdir -p ~/.config/goose
32
+ cat > ~/.config/goose/config.yaml <<EOF
33
+ GOOSE_PROVIDER: google
34
+ GOOSE_MODEL: gemini-2.5-flash
35
+ keyring: false
36
+ EOF
37
+
38
+ # Run analysis
39
echo "Summarize these linting issues:" > prompt.txt
40
cat lint.json >> prompt.txt
41
goose run --instructions prompt.txt --no-session --quiet > analysis.md
0 commit comments