Finish ML deployment module #499
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: Check Markdown formatting | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: "0 13 * * 1" # run every Monday at 13:00 UTC | |
jobs: | |
lint: | |
name: Check Markdown formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: xt0rted/markdownlint-problem-matcher@v3 | |
- run: npm install -g markdownlint-cli | |
- run: markdownlint **/*.md --ignore node_modules -c .github/markdownlint.json |