diff --git a/.forgejo/workflows/lint.yaml b/.forgejo/workflows/lint.yaml new file mode 100644 index 0000000..46a5a88 --- /dev/null +++ b/.forgejo/workflows/lint.yaml @@ -0,0 +1,14 @@ +on: [push] + +jobs: + phplint: + runs-on: docker + steps: + - uses: actions/checkout@v3 + - uses: docker://cytopia/phplint:alpine + with: + cmd: -i ./vendor/.* *.php + - uses: github.com/DavidAnson/markdownlint-cli2-action@v13 + with: + globs: '**/*.md' + continue-on-error: true \ No newline at end of file diff --git a/.forgejo/workflows/phplint.yaml b/.forgejo/workflows/phplint.yaml deleted file mode 100644 index e2d7069..0000000 --- a/.forgejo/workflows/phplint.yaml +++ /dev/null @@ -1,10 +0,0 @@ -on: [push] - -jobs: - phplint: - runs-on: docker - steps: - - uses: actions/checkout@v3 - - uses: docker://cytopia/phplint:alpine - with: - cmd: -i ./vendor/.* *.php \ No newline at end of file