diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c34bff0..97147d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,16 @@ jobs: strategy: matrix: - php: ['7.2', '7.3', '7.4'] - laravel: ['7.*', '8.*'] - prefer: ['prefer-lowest', 'prefer-stable'] + php: + - '7.3' + - '7.4' + - '8.0' + laravel: + - '7.*' + - '8.*' + prefer: + - 'prefer-lowest' + - 'prefer-stable' include: - laravel: '7.*' testbench: '5.*' @@ -32,6 +39,13 @@ jobs: steps: - uses: actions/checkout@v1 + - 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 + coverage: pcov + - uses: actions/cache@v1 name: Cache dependencies with: @@ -45,7 +59,7 @@ jobs: - name: Run tests run: | - phpunit --coverage-text --coverage-clover=coverage.xml + vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml - uses: codecov/codecov-action@v1 with: