Skip to content

Commit

Permalink
ci: check phpdoc build in quality workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed May 2, 2024
1 parent 35c84cf commit 7bdf616
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,13 @@ jobs:
pip install -r requirements.txt
- name: Run pylint
run: pylint $(git ls-files '*.py')

check_phpdoc:
runs-on: ubuntu-latest
needs: ["lint_php"]
steps:
- name: Check phpdoc build
run: |
wget https://phpdoc.org/phpDocumentor.phar -O phpdoc
chmod +x ./phpdoc
./phpdoc

0 comments on commit 7bdf616

Please sign in to comment.