2019-10-10 19:17:17 +07:00
|
|
|
# GitHub Action for Laravel
|
|
|
|
name: Testing Laravel
|
2019-10-08 19:42:54 +07:00
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
laravel:
|
|
|
|
name: Laravel (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }})
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-01-21 09:55:14 +07:00
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
2021-12-15 18:19:10 +07:00
|
|
|
php-versions: ['7.4', '8.0', '8.1']
|
2019-10-08 19:42:54 +07:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2020-01-02 00:06:25 +07:00
|
|
|
uses: actions/checkout@v2
|
2021-12-15 18:19:10 +07:00
|
|
|
|
|
|
|
# Docs: https://github.com/shivammathur/setup-php
|
|
|
|
- name: Setup PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
2019-10-08 19:42:54 +07:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
2019-12-09 12:22:43 +07:00
|
|
|
extensions: mbstring, dom, fileinfo
|
2021-12-15 18:19:10 +07:00
|
|
|
coverage: xdebug
|
|
|
|
|
2019-11-27 07:30:34 +07:00
|
|
|
- name: Get composer cache directory
|
2020-11-12 19:56:26 +07:00
|
|
|
id: composer-cache
|
2019-11-27 07:30:34 +07:00
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2019-11-27 07:30:34 +07:00
|
|
|
- name: Cache composer dependencies
|
2020-05-30 12:57:44 +07:00
|
|
|
uses: actions/cache@v2
|
2019-11-27 07:30:34 +07:00
|
|
|
with:
|
2020-11-12 19:56:26 +07:00
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
2019-12-28 01:53:51 +07:00
|
|
|
# Use composer.json for key, if composer.lock is not committed.
|
|
|
|
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
2019-11-27 07:30:34 +07:00
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2019-10-08 19:42:54 +07:00
|
|
|
- name: Install Composer dependencies
|
2020-06-19 12:22:35 +07:00
|
|
|
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2019-10-08 19:42:54 +07:00
|
|
|
- name: Prepare the application
|
|
|
|
run: |
|
|
|
|
php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
|
|
php artisan key:generate
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2019-10-08 19:42:54 +07:00
|
|
|
- name: Clear Config
|
|
|
|
run: php artisan config:clear
|
2021-12-15 18:19:10 +07:00
|
|
|
|
2019-10-08 19:42:54 +07:00
|
|
|
- name: Test with phpunit
|
2021-12-15 18:19:10 +07:00
|
|
|
run: vendor/bin/phpunit --coverage-text
|