Update base-installation.md #731
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: run-tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
php: [8.3, 8.2] | |
laravel: ['11.*'] | |
dependency-version: [prefer-lowest, prefer-stable] | |
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- 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 | |
coverage: none | |
- name: Create database | |
run: | | |
sudo /etc/init.d/mysql start | |
mysql -u root -proot -e 'CREATE DATABASE IF NOT EXISTS laravel_mt_landlord;' | |
mysql -u root -proot -e 'CREATE DATABASE IF NOT EXISTS laravel_mt_tenant_1;' | |
mysql -u root -proot -e 'CREATE DATABASE IF NOT EXISTS laravel_mt_tenant_2;' | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: 5 | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" --no-interaction --no-update | |
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest | |
- name: Execute tests | |
run: vendor/bin/pest | |
env: | |
DB_PASSWORD: root |