Skip to content

Updates email to enable hiding login details for store apps that don'… #39

Updates email to enable hiding login details for store apps that don'…

Updates email to enable hiding login details for store apps that don'… #39

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ main, dev, staging, edition-atlanta ]
push:
branches: [ main, dev, staging, edition-atlanta ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: mbstring, dom, fileinfo, sqlite3
coverage: xdebug
- 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
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: php artisan test