Skip to content

Update eval.yml

Update eval.yml #12

Workflow file for this run

name: eval-workflow
on:
push:
# Workflow runs on push to any branch.
schedule:
- cron: "0 * * * *" # hourly
# TODO(polina-c): add steps that run tests
jobs:
eval-job:
runs-on: ubuntu-latest
environment: eval
steps:
- name: Check that key is available
env:
GEMINI_API_KEY: ${{ secrets.ENV_GEMINI_API_KEY }}
run: |
echo "GEMINI_API_KEY has ${#GEMINI_API_KEY} characters"