[Documentation] Update docs for selecting specific tags of a metric instrument #6870
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: markdownlint | |
on: | |
push: | |
branches: [ 'main*' ] | |
paths: | |
- '**.md' | |
pull_request: | |
branches: [ 'main*' ] | |
paths: | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
- name: install markdownlint-cli | |
run: sudo npm install -g markdownlint-cli | |
- name: run markdownlint | |
run: markdownlint . |