[7.x] Ensure generated testbench.yaml
is configured with App\\
and Database\\
instead of Workbench\App\\
and Workbench\Database\\
based on configured namespaces
#1111
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: audits | |
on: | |
push: | |
branches: | |
- '*.x' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
audit-dependencies: | |
runs-on: "ubuntu-latest" | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
php: | |
- '8.0' | |
- 8.1 | |
- 8.2 | |
- 8.3 | |
experimental: | |
- true | |
exclude: | |
- php: '8.0' | |
name: PHP:${{ matrix.php }} Code Audit | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, intl, fileinfo | |
coverage: none | |
- name: Install dependencies | |
uses: "ramsey/composer-install@v3" | |
with: | |
dependency-versions: "highest" | |
composer-options: "--prefer-dist --prefer-stable --no-cache" | |
- name: Installed dependencies | |
run: composer show -D | |
- name: Audit dependencies | |
run: composer audit |