33 lines
571 B
YAML
33 lines
571 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore:
|
|
- master
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
php: [8.1, 8.2, 8.3, 8.4]
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
|
|
- name: Validate composer.json
|
|
run: composer validate
|
|
|
|
- name: Install dependencies
|
|
run: composer update --prefer-source
|
|
|
|
- name: Run test suite
|
|
run: php vendor/bin/phpunit tests
|