diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 67ee119..e728063 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -3,12 +3,12 @@ name: Quality on: [push, pull_request] jobs: - run: + run: runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: [ ubuntu-latest ] - php-versions: [ 7.4' ] + php-versions: [ '8.0' ] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: - name: Checkout @@ -22,9 +22,7 @@ jobs: ini-values: post_max_size=256M, short_open_tag=On #optional, setup php.ini configuration coverage: xdebug #optional, setup coverage driver tools: psalm, phpcbf, phpcs - - name: Check PHP Version - run: php -v - + - name: Add dependencies run: composer install @@ -32,7 +30,4 @@ jobs: run: composer validate - name: Check cs - run: composer cs - - - name: Check psalm - run: composer psalm \ No newline at end of file + run: composer cs \ No newline at end of file