Skip to content

Version 5.0

Version 5.0 #38

Workflow file for this run

name: phpunit
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ["ubuntu-22.04"]
php-versions: ["8.1", "8.2"]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Download local revision of Chromium
run: php snappdf download
- name: PHPUnit tests
run: php vendor/bin/phpunit --testdox