We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd8a117 + 5677a83 commit 46bdea8Copy full SHA for 46bdea8
1 file changed
.github/workflows/eval.yml
@@ -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