doc(metrics): Make metrics related info easily accessible #19
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: Check links in markdown documentation | |
on: pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: "Validate links in updated markdown files" | |
run: | | |
git fetch origin | |
changedFiles=$(git diff origin/$GITHUB_BASE_REF.. --name-only) | |
mlc_installed=0 | |
for file in $changedFiles; do | |
if [[ ".md" == ".${file##*.}" ]]; then | |
if [[ $mlc_installed == 0 ]]; then | |
cargo install mlc | |
mlc_installed=1 | |
fi | |
echo ${file}; | |
mlc $file | |
fi | |
done |