Skip to content

ID-147: Verify Email at register #105

ID-147: Verify Email at register

ID-147: Verify Email at register #105

Workflow file for this run

name: Commit
on:
push: {}
pull_request: {}
jobs:
laravel-tests:
runs-on: ubuntu-latest
steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
- uses: actions/checkout@v3
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist --ignore-platform-reqs
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Laravel-pint
uses: aglipanci/laravel-pint-action@0.1.0
with:
preset: laravel
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: php artisan test
- name: Run PHP CS Fixer
run: vendor/bin/php-cs-fixer fix .
- name: Compile and Minify SCSS for Production
run: npm install && npm run build
- name: Generate Code Coverage Report
run: vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Static Code Analysis
run: vendor/bin/phpstan analyze app --level 4
- name: Upload Code Coverage Report
uses: actions/upload-artifact@v2
with:
name: code-coverage
path: coverage.xml