This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
Bump laravel/telescope from 4.17.6 to 5.0.0 #6
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: Testing Code with PHPUnit | |
on: | |
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: admin@example.com | |
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 |