This repository has been archived by the owner on May 9, 2024. It is now read-only.
Bump spatie/laravel-ignition from 2.5.1 to 2.7.0 #2336
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: phpunit | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:8.3 | |
env: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: secretic | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup PHP 8.3 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
- name: Install PHP extensions | |
run: sudo apt-get install -y php-phpdbg | |
- name: Check phpdbg version | |
run: phpdbg -V | |
- name: Copy .env | |
run: php -r "file_exists('.env') || copy('.env.ci', '.env');" | |
- name: Install Composer Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Generate key | |
run: php artisan key:generate | |
- name: Directory Permissions | |
run: chmod -R 777 storage bootstrap/cache | |
- name: Clear Configuration | |
run: php artisan config:clear | |
- name: Run the migrations | |
run: php artisan migrate | |
- name: Run tests via PHPUnit | |
env: | |
XDEBUG_MODE: coverage | |
run: | | |
vendor/bin/phpunit --coverage-clover=coverage.xml | |
cat ./coverage.xml | |
- name: Show coverage.xml | |
run: cat ./coverage.xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: flamenotes/flamenotes | |
files: ./coverage.xml | |
fail_ci_if_error: true | |
flags: unittests | |
name: codecov-umbrella | |
verbose: true | |
env_vars: PHP |