Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/lint-and-analyse-php.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint and analyse php files
name: Linters

# If a pull-request is pushed then cancel all previously running jobs related
# to that pull-request
Expand All @@ -17,6 +17,20 @@ permissions:
contents: read

jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: markdownlint-cli2-action
uses: DavidAnson/markdownlint-cli2-action@v20
with:
config: 'doc/.markdownlint.yml'
globs: |
*.md
doc/*.md

phpunit:
runs-on: ubuntu-latest
strategy:
Expand Down
Loading