Skip to content

Commit 46bdea8

Browse files
committed
Merge branch 'eval-wf' into debug-evals
2 parents cd8a117 + 5677a83 commit 46bdea8

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/eval.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: eval-workflow
2+
3+
on:
4+
push:
5+
# Workflow runs on push to any branch.
6+
schedule:
7+
- cron: "0 * * * *" # hourly
8+
9+
# TODO(polina-c): add steps that run tests
10+
11+
jobs:
12+
eval-job:
13+
runs-on: ubuntu-latest
14+
environment: eval
15+
steps:
16+
- name: Check that key is available
17+
run: |
18+
echo "ENV_KEY has ${#ENV_KEY} characters"
19+
echo "REPO_KEY has ${#REPO_KEY} characters"
20+
21+
env:
22+
ENV_KEY: ${{ secrets.ENV_GEMINI_API_KEY }}
23+
REPO_KEY: ${{ secrets.REPO_GEMINI_API_KEY }}
24+
25+
26+

0 commit comments

Comments
 (0)