From 5aa7c4f9499135dd12162045e441f5215ee050aa Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Sun, 26 Mar 2023 18:31:50 +0200 Subject: Full working app --- php/tcpdf/.github/workflows/lint-docs.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 php/tcpdf/.github/workflows/lint-docs.yml (limited to 'php/tcpdf/.github/workflows/lint-docs.yml') diff --git a/php/tcpdf/.github/workflows/lint-docs.yml b/php/tcpdf/.github/workflows/lint-docs.yml new file mode 100644 index 0000000..7cc3850 --- /dev/null +++ b/php/tcpdf/.github/workflows/lint-docs.yml @@ -0,0 +1,20 @@ +name: lint php documentation + +on: + push: + pull_request: + types: [opened, synchronize, reopened] + branches: + - main + +jobs: + lint-docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: lint php documentation + uses: sudo-bot/action-doctum@dev + with: + config-file: scripts/doctum.php + method: "parse" + cli-args: "--output-format=github --no-ansi --no-progress -v --ignore-parse-errors" -- cgit v1.3.1