Skip to content

Commit

Permalink
Merge pull request #18 from cslant/feature/#5-create-a-workflow-to-test
Browse files Browse the repository at this point in the history
feat: create a workflow to test the composer running #5
  • Loading branch information
tanhongit authored Jul 23, 2024
2 parents 3451cd3 + 118dba7 commit 47d22fa
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/setup_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Setup & test

on: [ push, pull_request ]

jobs:
tests:
name: Composer P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
php: [ '8.1', '8.2', '8.3' ]
laravel: [ 11.*, 10.*, 9.* ]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 8.*
exclude:
- laravel: 11.*
php: 8.1
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}

- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: |
composer install --no-interaction --no-progress --no-suggest
- name: Run tests
run: |
composer validate --strict

0 comments on commit 47d22fa

Please # to comment.