| name: Run Manual Tests
on:
  workflow_dispatch:
    inputs:
      git-ref:
        description: Git Ref (Optional)
        required: false
jobs:
  tests:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        php: [5.6, 7.2, 7.3, 7.4, 8.0]
        stability: [prefer-lowest, prefer-stable]
    name: P${{ matrix.php }}-${{ matrix.stability }}
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
        if: github.event.inputs.git-ref == ''
      - name: Checkout code (Custom Ref)
        uses: actions/checkout@v2
        if: github.event.inputs.git-ref != ''
        with:
          ref: ${{ github.event.inputs.git-ref }}
      - name: Setup PHP
        uses: shivammathur/setup-php@v2
        with:
          php-version: ${{ matrix.php }}
          extensions: curl, zip, json
          coverage: none
      - name: Install dependencies
        run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
      - name: Execute tests
        run: vendor/bin/phpunit --verbose --configuration phpunit.xml.dist
 |