OOP Principles: Change Knowledge Check to questions and amend link in #2. Also, reword Assignment #1. #102
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: MarkdownLint | |
on: | |
pull_request: | |
paths: | |
- '**.md' | |
- '!./*.md' | |
- '!**/project*.md' | |
- '!./archive/**.md' | |
- '!./templates/**.md' | |
- '!./markdownlint/docs/**.md' | |
jobs: | |
lesson_lint: | |
name: Lint lesson files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: tj-actions/changed-files@v41 | |
id: changed-files | |
with: | |
files: | | |
**.md | |
!./*.md | |
!README.md | |
!**/project*.md | |
!./archive/**.md | |
!./templates/**.md | |
!./markdownlint/docs/**.md | |
separator: ',' | |
- uses: DavidAnson/markdownlint-cli2-action@v14 | |
with: | |
config: './lesson.markdownlint-cli2.jsonc' | |
globs: ${{ steps.changed-files.outputs.all_changed_files }} | |
separator: ',' |