Bump blackfire/blackfire from a6c5b7b
to 8e29a1e
#264
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 | |
on: pull_request | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
markdown: | |
name: markdown | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run markdownlint | |
uses: DavidAnson/markdownlint-cli2-action@v13 | |
dockerfile: | |
name: dockerfile | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run hadolint | |
uses: hadolint/[email protected] | |
with: | |
trusted-registries: docker.io,ghcr.io | |
shell-scripts: | |
name: shell scripts | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: luizm/action-sh-checker@master | |
yaml: | |
name: yaml | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Yamllint | |
uses: frenck/[email protected] | |
php-ext-doc: | |
name: php extension documentation | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checking if enabled PHP extensions are documented in README.md | |
run: ./bin/check-doc.sh |