diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1de4122..70f6483 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,10 @@ jobs: php-version: 8.4 composer-flags: '--ignore-platform-req=php+' psalm: none + - operating-system: 'ubuntu-latest' + php-version: 8.5 + composer-flags: '--ignore-platform-req=php+' + psalm: none name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }} runs-on: ${{ matrix.operating-system }} @@ -64,15 +68,10 @@ jobs: composer- - name: Install dependencies - uses: nick-invision/retry@v2 - with: - timeout_minutes: 5 - max_attempts: 5 - retry_wait_seconds: 30 - command: | - composer update --optimize-autoloader --no-interaction --no-progress ${{ matrix.composer-flags }} - php -v - composer info -D + run: | + composer update --optimize-autoloader --no-interaction --no-progress ${{ matrix.composer-flags }} + php -v + composer info -D - name: Run tests run: php vendor/bin/phpunit