From 6f013e9edf4a678f51eddae366c825a30c0d2972 Mon Sep 17 00:00:00 2001 From: Yada Clintjens Date: Mon, 13 Nov 2023 11:19:22 +0100 Subject: [PATCH] Run tests on PHP 8.3 and update test suite --- .github/workflows/ci.yml | 22 +++++++++++++--------- composer.json | 10 +++++++--- phpunit.xml.dist | 10 +++++----- phpunit.xml.legacy | 2 +- 4 files changed, 26 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0724232..4e5a5eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,11 @@ on: jobs: PHPUnit: name: PHPUnit (PHP ${{ matrix.php }}) - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: php: + - 8.3 - 8.2 - 8.1 - 8.0 @@ -24,7 +25,7 @@ jobs: - 5.4 - 5.3 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} @@ -37,13 +38,16 @@ jobs: PHPUnit-hhvm: name: PHPUnit (HHVM) - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 continue-on-error: true steps: - - uses: actions/checkout@v2 - - uses: azjezz/setup-hhvm@v1 + - uses: actions/checkout@v4 + - run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM + - name: Run hhvm composer.phar install + uses: docker://hhvm/hhvm:3.30-lts-latest with: - version: lts-3.30 - - run: composer self-update --2.2 # downgrade Composer for HHVM - - run: hhvm $(which composer) install - - run: hhvm vendor/bin/phpunit + args: hhvm composer.phar install + - name: Run hhvm vendor/bin/phpunit + uses: docker://hhvm/hhvm:3.30-lts-latest + with: + args: hhvm vendor/bin/phpunit diff --git a/composer.json b/composer.json index 2a26a7a..e4a2624 100644 --- a/composer.json +++ b/composer.json @@ -18,14 +18,18 @@ "require-dev": { "clue/block-react": "^1.5", "clue/connection-manager-extra": "^1.3", - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35", + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", "react/event-loop": "^1.2", "react/http": "^1.6" }, "autoload": { - "psr-4": { "Clue\\React\\Socks\\": "src/" } + "psr-4": { + "Clue\\React\\Socks\\": "src/" + } }, "autoload-dev": { - "psr-4": { "Clue\\Tests\\React\\Socks\\": "tests/" } + "psr-4": { + "Clue\\Tests\\React\\Socks\\": "tests/" + } } } diff --git a/phpunit.xml.dist b/phpunit.xml.dist index c2a1b6e..2548dc0 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,11 +1,11 @@ - - + + cacheResult="false" + colors="true"> ./tests/ diff --git a/phpunit.xml.legacy b/phpunit.xml.legacy index c5dd959..e922482 100644 --- a/phpunit.xml.legacy +++ b/phpunit.xml.legacy @@ -1,6 +1,6 @@ - +