Skip to content

Commit 41db47b

Browse files
committed
Cover tests for PHP 8.4?
1 parent cf0dd94 commit 41db47b

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
php-version: [ '7.3', '7.4', '8.0' ]
15+
php-version: [ '7.3', '7.4', '8.0', '8.3', '8.4' ]
1616
name: PHP ${{ matrix.php-version }}
1717
steps:
1818
- uses: actions/checkout@v2

bitbucket-pipelines.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,34 @@ pipelines:
1515
- composer require phpunit/phpunit
1616
- composer require laminas/laminas-feed
1717
- vendor/bin/phpunit --configuration ./phpunit.xml
18+
- step:
19+
name: NetCURL 6.1/PHP 8.3
20+
image: php:8.3
21+
caches:
22+
- composer
23+
script:
24+
- apt-get update && apt-get install -y unzip libxml2-dev git
25+
- docker-php-ext-install soap
26+
- docker-php-ext-enable soap
27+
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
28+
- composer install
29+
- composer require phpunit/phpunit
30+
- composer require laminas/laminas-feed
31+
- vendor/bin/phpunit --configuration ./phpunit.xml
32+
- step:
33+
name: NetCURL 6.1/PHP 8.4
34+
image: php:8.4
35+
caches:
36+
- composer
37+
script:
38+
- apt-get update && apt-get install -y unzip libxml2-dev git
39+
- docker-php-ext-install soap
40+
- docker-php-ext-enable soap
41+
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
42+
- composer install
43+
- composer require phpunit/phpunit
44+
- composer require laminas/laminas-feed
45+
- vendor/bin/phpunit --configuration ./phpunit.xml
1846
- step:
1947
name: NetCURL 6.1/PHP 7.4
2048
image: php:7.4

0 commit comments

Comments
 (0)