Skip to content

Testing Code with PHPUnit #635

Testing Code with PHPUnit

Testing Code with PHPUnit #635

Workflow file for this run

name: Testing Code with PHPUnit
on:
schedule:
- cron: '0 0 * * *'
pull_request:
push: # (or pull requests)
paths:
- '.github/workflows/**'
- '**.php'
- 'app/**'
- 'tests/**'
- 'phpunit.xml'
- 'composer.json'
- 'composer.lock'
jobs:
laravel:
name: Laravel (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
env:
BROADCAST_DRIVER: log
CACHE_DRIVER: array
QUEUE_CONNECTION: sync
SESSION_DRIVER: cookie
MAIL_MAILER: array
MAIL_FROM_ADDRESS: [email protected]
strategy:
fail-fast: false
matrix:
php-versions: ['8.3']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: pcov #optional
tools: composer:v2
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: TimeZone ⏰
run: |
sudo timedatectl set-timezone UTC
timedatectl
- name: Prepare the application
run: |
touch database/database.sqlite
php -r "file_exists('.env') || copy('.env.example', '.env');"
php artisan key:generate
- name: Clear Config
run: php artisan config:clear
- name: Run Migration
run: php artisan migrate -v
- name: Test with phpunit
run: vendor/bin/phpunit --coverage-text