We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9f16d2 commit e165204Copy full SHA for e165204
.github/workflows/ci.yml
@@ -7,10 +7,11 @@ on:
7
jobs:
8
PHPUnit:
9
name: PHPUnit (PHP ${{ matrix.php }})
10
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-24.04
11
strategy:
12
matrix:
13
php:
14
+ - 8.4
15
- 8.3
16
- 8.2
17
- 8.1
@@ -33,6 +34,10 @@ jobs:
33
34
ini-file: development
35
- run: composer install
36
- run: docker pull busybox:latest
37
+ - run: docker info
38
+ - run: docker network ls
39
+ - run: docker network create test_network
40
+ - run: docker network rm test_network
41
- run: vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml
42
if: ${{ matrix.php >= 7.3 }}
43
- run: vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml -c phpunit.xml.legacy
0 commit comments