Skip to content

Commit

Permalink
[CI] leaderboard formatting (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
YannDubs authored Jul 5, 2023
1 parent 1cc3e84 commit 89937b9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/update_leaderboard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Format leaderboard

on:
push:
branches:
- main
paths:
- 'leaderboards/data_AlpacaEval/**'

jobs:
format_leaderboard:
runs-on: "ubuntu-20.04"

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10
cache: "pip"

- name: Install dependencies
run: pip install .

- name: Run script
run: python docs/format_export_leaderboards.py

0 comments on commit 89937b9

Please sign in to comment.