Add blendaxai-gm-l6-vo14 to AlpacaEval #232
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test format leaderboard | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'src/alpaca_eval/leaderboards/data_AlpacaEval/**' | |
- 'results/**' | |
workflow_dispatch: | |
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: Format sample sheets | |
run: python docs/format_sample_sheets.py | |
- name: Update leaderboard | |
run: python docs/format_export_leaderboards.py | |
- name: Run check for unwanted PR files | |
run: python docs/check_unwanted_files.py |