12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- name: "Tests"
- on:
- push:
- paths-ignore:
- - '**.md'
- pull_request:
- paths-ignore:
- - '**.md'
- jobs:
- tests:
- name: PHP ${{ matrix.php }}
- runs-on: ubuntu-latest
- strategy:
- matrix:
- php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
- steps:
- - name: Checkout Code
- uses: actions/checkout@v2
- - name: Setup PHP
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php }}
- tools: composer:v2
- coverage: none
- - name: Setup Problem Matchers
- run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- - name: Install PHP 5/7 Dependencies
- uses: nick-invision/retry@v1
- with:
- timeout_minutes: 5
- max_attempts: 5
- command: composer update --no-interaction --no-progress
- if: "matrix.php != '8.0'"
- - name: Install PHP 8 Dependencies
- uses: nick-invision/retry@v1
- with:
- timeout_minutes: 5
- max_attempts: 5
- command: |
- composer require "phpunit/phpunit:^9.3" --no-update
- composer update --no-interaction --no-progress --ignore-platform-req=php
- php -v
- if: "matrix.php == '8.0'"
- - name: Execute PHPUnit
- run: vendor/bin/phpunit
|