Add llm as judge mt-bench dataset and metrics #3261
Workflow file for this run
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: Verify Code Quality & Security | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
verify-pre-commit-executed: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install requirements | |
run: | | |
pip install -r requirements/dev.rqr | |
- name: Install the pre-commit hooks | |
run: | | |
pre-commit install | |
- name: Validate all pre-commit verification were run correctly | |
run: | | |
pre-commit run --all-files | |
- name: Send failure message | |
if: failure() # This step will only run if a previous step failed | |
run: echo "The quality & security verification failed. This is likely due to not using pre-commit hooks please run 'pre-commit install' befroe any commit. " |