Skip to content

Tests for latest commit by ozdemirburak #2

Tests for latest commit by ozdemirburak

Tests for latest commit by ozdemirburak #2

Workflow file for this run

name: Tests
run-name: Tests for latest commit by ${{ github.actor }}
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ 8.0, 8.1 ]
dependency-version: [ prefer-lowest, prefer-stable ]
name: P${{ matrix.php }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Install dependencies
run: |
composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
- name: Execute tests
run: vendor/bin/phpunit
- run: echo " ${{ job.status }}."