Allow opening table create form without table name #312
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint php documentation | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: | |
- master | |
- QA_** | |
permissions: | |
contents: read | |
jobs: | |
lint-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Lint phpdoc blocks | |
uses: sudo-bot/action-doctum@v5 | |
with: | |
config-file: tests/doctum-config.php | |
method: "parse" | |
cli-args: "--output-format=github --no-ansi --no-progress -v --ignore-parse-errors" |