correctly lists users in the share site dropdown #724
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: Laravel | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
laravel-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: mirromutth/[email protected] | |
with: | |
host port: 3800 # Optional, default value is 3306. The port of host | |
container port: 3307 # Optional, default value is 3306. The port of container | |
character set server: 'utf8' | |
collation server: 'utf8_general_ci' | |
mysql version: '8.0' | |
mysql database: 'laravel' | |
mysql user: 'laravel' | |
mysql password: 'testpass' | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
- 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-suggest --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 | |
env: | |
DB_PORT: 3800 | |
DB_DATABASE: 'laravel' | |
DB_USERNAME: 'laravel' | |
DB_PASSWORD: 'testpass' | |
run: | | |
php artisan migrate | |
php artisan storage:link | |
php artisan migrate | |
php artisan db:seed | |
php artisan permissions:cache | |
php artisan load:states storage/app/data/us-states.csv | |
php artisan load:counties storage/app/data/us-counties.csv | |
vendor/bin/phpunit |