Skip to content

Bump phpunit/phpunit from 11.5.2 to 11.5.3 #65

Bump phpunit/phpunit from 11.5.2 to 11.5.3

Bump phpunit/phpunit from 11.5.2 to 11.5.3 #65

Workflow file for this run

---
name: Lint
on:
- pull_request
- push
permissions:
contents: read
pull-requests: write
jobs:
actionlint:
name: GitHub Actions
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run actionlint
uses: reviewdog/action-actionlint@v1
markdownlint:
name: Markdown
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v19
with:
globs: |
**/*.md
!README.md
yamllint:
name: YAML
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run yamllint
uses: frenck/[email protected]
with:
strict: true
shellcheck:
name: Shell scripts
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run shellcheck
uses: ludeeus/[email protected]
env:
SHELLCHECK_OPTS: -o all
checkmake:
name: Makfile
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run checkmake
uses: Uno-Takashi/checkmake-action@main