From 77f38be9ae496a7c054d229d2d21937cca151719 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Wed, 25 Sep 2024 10:14:20 +0200 Subject: [PATCH] Raise tests' timeout to 5 minutes --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eed3aa0c..d927babb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: php-version: "${{ matrix.php-version }}" ini-values: "${{ env.INI_VALUES }}" tools: composer-normalize, composer-require-checker - - uses: "ramsey/composer-install@v2" + - uses: "ramsey/composer-install@v3" - run: "composer validate --strict" - run: "composer-normalize --dry-run" @@ -48,7 +48,7 @@ jobs: coverage: "pcov" php-version: "${{ matrix.php-version }}" ini-values: "${{ env.INI_VALUES }}" - - uses: "ramsey/composer-install@v2" + - uses: "ramsey/composer-install@v3" - name: "Lint XMLs" uses: ./.github/lint-xml-configuration @@ -76,7 +76,7 @@ jobs: coverage: "pcov" php-version: "${{ matrix.php-version }}" ini-values: "${{ env.INI_VALUES }}" - - uses: "ramsey/composer-install@v2" + - uses: "ramsey/composer-install@v3" with: dependency-versions: "${{ matrix.dependencies }}" @@ -99,10 +99,10 @@ jobs: coverage: "pcov" php-version: "${{ matrix.php-version }}" ini-values: "${{ env.INI_VALUES }}" - - uses: "ramsey/composer-install@v2" + - uses: "ramsey/composer-install@v3" - name: "Run tests" - timeout-minutes: 3 + timeout-minutes: 5 run: "vendor/bin/phpunit --coverage-xml=coverage/coverage-xml --log-junit=coverage/junit.xml" - name: "Gather base branch for diff" @@ -137,7 +137,7 @@ jobs: php-version: "${{ matrix.php-version }}" ini-values: "${{ env.INI_VALUES }}" tools: cs2pr - - uses: "ramsey/composer-install@v2" + - uses: "ramsey/composer-install@v3" - run: "vendor/bin/phpcs -q --report=checkstyle | cs2pr" @@ -156,6 +156,6 @@ jobs: coverage: "pcov" php-version: "${{ matrix.php-version }}" ini-values: "${{ env.INI_VALUES }}" - - uses: "ramsey/composer-install@v2" + - uses: "ramsey/composer-install@v3" - run: "vendor/bin/phpstan --memory-limit=512M --ansi --no-progress"