Python: Update MMLU sample so that it works with all Chat Completion services #18832
Workflow file for this run
This file contains hidden or 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: Check .md links | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["main", "java-development"] | |
permissions: | |
contents: read | |
jobs: | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
# check out the latest version of the code | |
steps: | |
- uses: actions/checkout@v4 | |
# Checks the status of hyperlinks in .md files in verbose mode | |
- name: Check links | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-verbose-mode: "yes" | |
config-file: ".github/workflows/markdown-link-check-config.json" |