Add documentation and publish it to GitHub Pages. #2
Workflow file for this run
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
| ### Ensure that markdown files are properly formatted | |
| name: 'Check Markdown Format' | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| jobs: | |
| mdformat: | |
| name: 'mdformat' | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: 'Checkout Code' | |
| uses: 'actions/checkout@v4' | |
| - name: 'Check Markdown Format' | |
| run: 'pipx run mdformat --check --wrap 100 .' |