Reorganize OOP concepts guide with hierarchical structure and per-section TOCs #27
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: Markdown Link Check | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| paths: | |
| - '**.md' | |
| pull_request: | |
| branches: [ main, develop ] | |
| paths: | |
| - '**.md' | |
| jobs: | |
| markdown-check: | |
| name: Check Markdown Links | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Check Markdown Links | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| use-quiet-mode: 'yes' | |
| config-file: '.github/markdown-link-check-config.json' | |
| continue-on-error: true |