[ISSUE #858] Jave client validate Message Body to avoid setting empty… #1297
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: Markdown Lint | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
push: | |
branches: | |
- master | |
jobs: | |
markdown-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install mardkdownlint | |
run: npm install -g markdownlint-cli | |
- name: Run markdownlint | |
run: markdownlint -c ./style/markdown/config.yml -i ./cpp/third_party -i ./rust/src/pb/README.md **/*.md |