Skip to content

Commit

Permalink
GH Acions tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienheyd committed Apr 12, 2024
1 parent d18f27b commit 7fa987f
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: tests

on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.0, 8.1, 8.2]
stability: [prefer-lowest, prefer-stable]
laravel: ['^9.0', '^10.0']
exclude:
- php: 8.2
laravel: '^9.0'
- php: 8.0
laravel: '^10.0'

name: PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.laravel }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd
coverage: none

- name: Install dependencies
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress --with laravel/framework:${{ matrix.laravel }}

- name: Execute code sniffing
run: vendor/bin/phpcs

- name: Execute tests
run: vendor/bin/phpunit

0 comments on commit 7fa987f

Please sign in to comment.