Skip to content

Merge remote-tracking branch 'origin/main' #74

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #74

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.2]
steps:
- name: Checkout
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, sqlite, pdo_sqlite, bcmath, intl, iconv
coverage: none
- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction --no-suggest
- name: Execute tests
run: vendor/bin/pest