Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed Mar 20, 2024
2 parents 28ce411 + 6d8b57a commit 157ff90
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Laravel

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
laravel-tests:

runs-on: ubuntu-latest

strategy:
max-parallel: 2
matrix:
php-versions: ['8.1', '8.2', '8.3']

name: PHP ${{ matrix.php-versions }}

steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug

- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"

- name: Create Database
run: |
mkdir -p database
touch database/database.sqlite
- name: Install Dependencies
run: composer update -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
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test

0 comments on commit 157ff90

Please sign in to comment.