retrieve slug from slugs table if the $slugAttribute field was not changed #3805
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: Tests | |
on: | |
push: | |
branches: | |
- 3.x | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Checking for prtodo's. | |
run: | | |
if grep --exclude-dir={.git,.github,vendor} -rE "PRtodo"; then | |
exit 1 | |
else | |
echo "All good" | |
fi | |
- name: Checking for leftover "ray" usages. | |
run: | | |
if grep --exclude-dir={.git,.github,vendor} -rE "ray("; then | |
exit 1 | |
else | |
echo "All good" | |
fi | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:11.*" --no-interaction --no-update | |
composer install | |
- name: Execute tests | |
run: vendor/bin/phpstan | |
- name: Check code style | |
run: vendor/bin/phpcs | |
test: | |
name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - DBAL ${{ matrix.dbal }} | |
timeout-minutes: 30 | |
runs-on: ${{ matrix.os }} | |
services: | |
mysql: | |
image: mysql:latest | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_ROOT_PASSWORD: root | |
MYSQL_DATABASE: twill_testing_3x | |
ports: | |
- 3306/tcp | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
php: [8.3, 8.2, 8.1] | |
laravel: [10.*, 11.*] | |
dbal: [3.*, 4.*] | |
exclude: | |
- laravel: 10.* | |
dbal: 4.* | |
- laravel: 11.* | |
php: 8.1 | |
- laravel: 11.* | |
dbal: 3.* | |
include: | |
- laravel: 10.* | |
testbench: 8.* | |
- laravel: 11.* | |
testbench: 9.* | |
steps: | |
- name: Set timezone? | |
uses: szenius/set-timezone@v1.0 | |
with: | |
timezoneLinux: "Europe/Paris" | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo, mysql | |
coverage: xdebug | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup problem matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ matrix.os }}-${{ matrix.laravel }}-${{ matrix.php }}-${{ matrix.dbal }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ matrix.os }}-${{ matrix.laravel }}-${{ matrix.php }}-${{ matrix.dbal }}-composer- | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "doctrine/dbal:${{ matrix.dbal }}" --no-interaction --no-update | |
composer install --prefer-dist --no-interaction --no-plugins | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.x' | |
- name: Build npm dependencies. | |
run: | | |
npm ci | |
- name: Create blocks dir | |
run: | | |
mkdir ./frontend/js/components/blocks/customs | |
- name: Build twill. | |
run: ./vendor/bin/testbench twill:build --forTesting | |
env: | |
CACHE_STORE: array | |
- name: Upgrade Chrome | |
uses: browser-actions/setup-chrome@latest | |
- name: Upgrade Chrome Driver | |
run: ./vendor/bin/testbench dusk:chrome-driver --detect | |
- name: Prepare Testbench Dusk | |
run: ./vendor/bin/testbench-dusk package:discover | |
- name: Execute all tests | |
run: vendor/bin/phpunit --stop-on-error | |
env: | |
DB_PORT: ${{ job.services.mysql.ports['3306'] }} | |
- uses: codecov/codecov-action@v2 | |
with: | |
files: .github/clover.xml | |
- name: Replace asterisks in Laravel | |
run: echo "REPLACED_LARAVEL=${MATRIX_LARAVEL//\*/_}" >> $GITHUB_ENV | |
env: | |
MATRIX_LARAVEL: ${{ matrix.laravel }} | |
- name: Replace asterisks in DBAL | |
id: replace_dbal | |
run: echo "REPLACED_DBAL=${MATRIX_DBAL//\*/_}" >> $GITHUB_ENV | |
env: | |
MATRIX_DBAL: ${{ matrix.dbal }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshots-${{ matrix.os }}-${{ matrix.php }}-${{ env.REPLACED_LARAVEL }}-${{ env.REPLACED_DBAL }} | |
path: | | |
tests/Browser/screenshots/ | |
tests/Browser/console/ |