updating workflow file #5
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 Package Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
extensions: mbstring, xml, ctype, iconv, mysql | |
- name: Cache Composer Packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.composer/cache | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer-git | |
- name: Setup Laravel Application | |
run: | | |
composer create-project --prefer-dist laravel/laravel laravel_app --no-interaction | |
cd laravel_app | |
composer require devdojo/auth:dev-main | |
- name: Update My Package | |
run: composer update devdojo/auth --with-dependencies | |
- name: Run Migrations | |
run: php artisan migrate | |
- name: Run Tests | |
run: ./vendor/bin/pest |