Updates to remove app print(f" and add a gitlab action to test that a… #132
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: 'Link Checker' | |
| on: push | |
| jobs: | |
| check-markdown-links: | |
| name: 'Check Markdown links' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| check-modified-files-only: 'no' | |
| config-file: '.github/check-md-links.json' |