We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d4194 commit ceb09a6Copy full SHA for ceb09a6
.github/workflows/evaluate.yaml
@@ -114,12 +114,18 @@ jobs:
114
115
- name: Run local server in background
116
run: |
117
- RUNNER_TRACKING_ID="" && (nohup python3 -m uvicorn fastapi_app:create_app --factory &)
+ RUNNER_TRACKING_ID="" && (nohup python3 -m uvicorn fastapi_app:create_app --factory > serverlogs.out 2> serverlogs.err &)
118
119
- name: Evaluate local RAG flow
120
121
python evals/evaluate.py
122
123
+ - name: Upload server logs as build artifact
124
+ uses: actions/upload-artifact@v4
125
+ with:
126
+ name: server_logs
127
+ path: ./serverlogs.out
128
+
129
- name: Upload eval results as build artifact
130
uses: actions/upload-artifact@v4
131
with:
0 commit comments