This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
build #853
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: build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
jobs: | |
# ---------------------------------------------------------------------------- | |
# Execute Architecture Test Cases | |
# ---------------------------------------------------------------------------- | |
architecture-tests: | |
name: Architecture Tests (${{matrix.php}}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.2' ] | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Set Git To Use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: pcov | |
tools: pecl, composer:v2 | |
ini-values: "memory_limit=-1" | |
extensions: dom, libxml, mbstring | |
- name: Validate Composer | |
run: composer validate | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Restore Composer Cache | |
uses: actions/cache@v1 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer- | |
- name: Install Dependencies | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 5 | |
command: composer install --no-scripts --ignore-platform-reqs --prefer-dist --no-interaction --no-progress | |
- name: Execute Architecture Tests | |
run: composer test:architecture | |
# ---------------------------------------------------------------------------- | |
# Execute Unit Test Cases | |
# ---------------------------------------------------------------------------- | |
unit-tests: | |
name: Unit Tests (${{matrix.php}}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.2' ] | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Set Git To Use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: pcov | |
tools: pecl, composer:v2 | |
ini-values: "memory_limit=-1" | |
extensions: dom, libxml, mbstring | |
- name: Validate Composer | |
run: composer validate | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Restore Composer Cache | |
uses: actions/cache@v1 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer- | |
- name: Install Dependencies | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 5 | |
command: composer install --no-scripts --ignore-platform-reqs --prefer-dist --no-interaction --no-progress | |
- name: Execute Unit Tests | |
run: composer test:unit | |
# ---------------------------------------------------------------------------- | |
# Execute Feature Test Cases | |
# ---------------------------------------------------------------------------- | |
feature-tests: | |
name: Feature Tests (${{matrix.php}}) | |
runs-on: ${{ matrix.os }} | |
env: | |
CACHE_DRIVER: file | |
QUEUE_CONNECTION: sync | |
SESSION_DRIVER: file | |
DB_HOST: 127.0.0.1 | |
DB_PORT: 5432 | |
DB_DATABASE: laravelsu | |
DB_USERNAME: root | |
DB_PASSWORD: password | |
services: | |
postgresql: | |
image: postgres:15.1 | |
env: | |
POSTGRES_DB: ${{ env.DB_DATABASE }} | |
POSTGRES_USER: ${{ env.DB_USERNAME }} | |
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }} | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd=pg_isready | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.2' ] | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Set Git To Use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: pcov | |
tools: composer:v2 | |
ini-values: "memory_limit=-1" | |
extensions: dom, libxml, mbstring, pdo, pdo_pgsql | |
- name: Validate Composer | |
run: composer validate | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Restore Composer Cache | |
uses: actions/cache@v1 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer- | |
- name: Install Dependencies | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 5 | |
max_attempts: 5 | |
command: composer install --prefer-dist --no-interaction --no-progress | |
- name: Apply required permissions | |
run: chmod -R 0777 storage bootstrap/cache | |
- name: Execute "post-root-package-install" command | |
run: composer run-script post-root-package-install | |
- name: Execute "post-create-project-cmd" command | |
run: composer run-script post-create-project-cmd | |
- name: Execute Feature Tests | |
run: composer test:functional |