Skip to content

Daily Benchmark Update #136

Daily Benchmark Update

Daily Benchmark Update #136

Workflow file for this run

name: Daily Benchmark Update
on:
schedule:
- cron: '45 9 * * *' # 9:45 AM UTC daily
workflow_dispatch:
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install matplotlib numpy
- name: Run daily update
run: python scripts/daily_update.py
- name: Commit if changed
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add -A
if ! git diff --cached --quiet; then
git commit -m "daily: update calibration benchmark results"
git push
else
echo "No changes to commit"
fi