2023-10-19 21:53:41 +02:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
phplint:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: docker://cytopia/phplint:alpine
|
|
|
|
with:
|
|
|
|
cmd: -i ./vendor/.* *.php
|
2023-12-14 11:50:06 +01:00
|
|
|
- uses: https://github.com/DavidAnson/markdownlint-cli2-action@v13
|
2023-10-19 21:53:41 +02:00
|
|
|
with:
|
|
|
|
globs: '**/*.md'
|
|
|
|
continue-on-error: true
|