Skip to content

Commit eeffa4b

Browse files
zkwentzclaude
andcommitted
Add benchmark results page and GitHub Pages deployment
Store dated benchmark results (2026-02-21) and add a GitHub Pages site with leaderboard, score charts, phase timings, and scoring methodology. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9407f3b commit eeffa4b

5 files changed

Lines changed: 1288 additions & 0 deletions

File tree

.github/workflows/pages.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Deploy GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- 'docs/**'
8+
- 'results/**'
9+
workflow_dispatch:
10+
11+
permissions:
12+
contents: read
13+
pages: write
14+
id-token: write
15+
16+
concurrency:
17+
group: pages
18+
cancel-in-progress: false
19+
20+
jobs:
21+
deploy:
22+
runs-on: ubuntu-latest
23+
environment:
24+
name: github-pages
25+
url: ${{ steps.deployment.outputs.page_url }}
26+
steps:
27+
- uses: actions/checkout@v4
28+
29+
- name: Build site
30+
run: |
31+
mkdir -p _site
32+
cp docs/index.html _site/
33+
cp -r results _site/results
34+
35+
- name: Setup Pages
36+
uses: actions/configure-pages@v5
37+
38+
- name: Upload artifact
39+
uses: actions/upload-pages-artifact@v3
40+
with:
41+
path: _site
42+
43+
- name: Deploy to GitHub Pages
44+
id: deployment
45+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ __pycache__
33
*.pyc
44
venv/
55
results.json
6+
!results/*.json

0 commit comments

Comments
 (0)