name: Tests

on:
  push:
    branches:
      - '*.x'
  pull_request:

jobs:
  tests:
    if: "! contains(toJSON(github.event.commits.*.msg), 'skip') && ! contains(toJSON(github.event.commits.*.msg), 'ci')" #skip ci...
    runs-on: ${{ matrix.operating-system }}

    strategy:
      fail-fast: false
      matrix:
        operating-system: [ubuntu-20.04]
        php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
        include:
          - operating-system: ubuntu-16.04
            php-versions: '7.1'
            COMPOSER_FLAGS: '--prefer-stable --prefer-lowest'
            PHPUNIT_FLAGS: '--coverage-clover build/coverage.xml'

    name: PHP ${{ matrix.php-versions }} - ${{ matrix.operating-system }}

    env:
      extensions: curl json libxml dom
      key: cache-v1 # can be any string, change to clear the extension cache.

    steps:
      # Checks out a copy of your repository on the ubuntu machine
      - name: Checkout code
        uses: actions/checkout@v3

      - name: Setup PHP Action
        uses: shivammathur/setup-php@v2
        with:
          php-version: ${{ matrix.php-versions }}
          extensions: ${{ env.extensions }}
          coverage: xdebug
          tools: 'composer:v2, pecl'

      - name: Install Composer dependencies
        run: composer update ${{ matrix.COMPOSER_FLAGS }} --no-interaction

      - name: boot test server
        run: vendor/bin/http_test_server > /dev/null 2>&1 &

      - name: Run tests
        run: composer test
