diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e6bf3864..88fb16a3 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -42,3 +42,24 @@ jobs: composer-options: "--no-interaction --no-suggest" - run: vendor/bin/phpunit + + canBeExecuted: + runs-on: ubuntu-latest + strategy: + matrix: + php: ['7.4', '8.0', '8.1', '8.2'] + + name: Can be executed with PHP ${{ matrix.php }} + steps: + - uses: actions/checkout@v3 + + - uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + coverage: none # disable xdebug, pcov + + - uses: "ramsey/composer-install@v2" + with: + composer-options: "--no-interaction --no-suggest" + + - run: bin/surf