Skip to content

Update ArrayCollection link in README (#228) #96

Update ArrayCollection link in README (#228)

Update ArrayCollection link in README (#228) #96

Workflow file for this run

name: tests
permissions:
contents: read
on:
push:
pull_request:
schedule:
- cron: '0 0 15 * *'
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- name: PHPStan Static Analysis
uses: php-actions/phpstan@v3
with:
configuration: phpstan.neon
test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
php: [8.4]
name: php v${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo
tools: composer:v2
coverage: pcov
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Execute tests
run: composer test