Skip to content

Update wikimedia/less.php from 3.0 to 5.x (#38) #84

Update wikimedia/less.php from 3.0 to 5.x (#38)

Update wikimedia/less.php from 3.0 to 5.x (#38) #84

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
unitTests:
strategy:
max-parallel: 6
matrix:
phpVersion: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
fail-fast: false
runs-on: ubuntu-latest
name: Linux / PHP ${{ matrix.phpVersion }}
steps:
- name: Checkout changes
uses: actions/checkout@v4
- name: Install NPM dependencies
run: |
sudo apt-get -y install jpegoptim libjpeg-progs optipng
npm install
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.phpVersion }}
tools: composer
extensions: curl, mbstring, xml
- name: Install Composer dependencies
run: composer install --no-interaction --no-progress --no-suggest
- name: Setup problem matchers for PHPUnit
if: matrix.phpVersion == '8.3'
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Run tests
run: ./bin/phpunit