Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Oct 24, 2024
1 parent 118033e commit dac1c17
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: tests

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

jobs:
laravel-tests:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2, 8.3]
laravel: ['9.*', '10.*', '11.*']
exclude:
- php: 8.1
laravel: 11.*
- php: 8.3
laravel: 9.*
- php: 8.0
laravel: 11.*
- php: 8.0
laravel: 10.*

name: 'PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }}'

steps:
- uses: actions/checkout@master

# Configure PHP
- name: Select PHP version
uses: shivammathur/setup-php@master
with:
php-version: '${{ matrix.php }}'
extensions: mbstring, pdo_sqlite, fileinfo, gd
coverage: none

# Configure NPM
- uses: actions/setup-node@v1
with:
node-version: '16.x'

# Install PHP dependencies
- name: Install Composer dependencies
run: composer require "illuminate/support:${{ matrix.laravel }}"

# Display installed laravel version
- name: Show laravel version
run: composer show laravel/framework

# # Install NPM dependencies
# - name: Install Dependencies
# run: npm install

# # Build static assets
# - name: Compile Assets
# run: npm run prod

# Run phpunit tests
- name: Run tests
run: ./vendor/bin/phpunit

0 comments on commit dac1c17

Please sign in to comment.