enums.md: Rename from_i32 to try_from_i32 #66
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: Markdown CI | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.md' | |
- '.github/workflows/markdown-ci.yml' | |
jobs: | |
lint-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- run: npm install -g markdownlint-cli | |
- run: markdownlint -c .markdownlint.jsonc -i SECURITY.md -i node_modules . | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
npm install -g markdown-link-check@3.10.3 | |
git ls-files '*.md' \ | |
| grep -vE '^SECURITY\.md$' \ | |
| xargs -n1 markdown-link-check --config .markdownlinkcheck.jsonc |