Skip to content

Bump actions/checkout from 3 to 4 #84

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #84

Workflow file for this run

on: push
jobs:
tests:
runs-on: ubuntu-latest
name: Testing with PHP ${{ matrix.php }}
strategy:
matrix:
php: [8.1, 8.2]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
coverage: none
- name: Install Composer dependencies
run: composer update --prefer-dist --no-interaction --no-ansi --no-progress
- name: Execute tests
run: |
vendor/bin/pint --test
vendor/bin/phpunit