Skip to content

Commit aab723a

Browse files
committed
ci: Update integration tests to 8.3 and run unit tests in matrix in 8.1, 8.2 and 8.3
1 parent 7c2aa00 commit aab723a

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

.github/workflows/integration-test-cluster-neo4j-4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: php-actions/composer@v6
2626
with:
2727
progress: yes
28-
php_version: 8.1
28+
php_version: 8.3
2929
version: 2
3030
- uses: php-actions/phpunit@v3
3131
with:

.github/workflows/integration-test-cluster-neo4j-5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: php-actions/composer@v6
2626
with:
2727
progress: yes
28-
php_version: 8.1
28+
php_version: 8.3
2929
version: 2
3030
- uses: php-actions/phpunit@v3
3131
with:

.github/workflows/integration-test-single-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
tests:
1313
runs-on: ubuntu-latest
14-
name: "Running on PHP 8.2 with a Neo4j 5 instance connecting over all available protocols"
14+
name: "Running on PHP 8.3 with a Neo4j 5 instance connecting over all available protocols"
1515

1616
services:
1717
neo4j:
@@ -39,7 +39,7 @@ jobs:
3939
- uses: php-actions/composer@v6
4040
with:
4141
progress: yes
42-
php_version: 8.2
42+
php_version: 8.3
4343
version: 2
4444
- name: Test multiple connections
4545
run: |

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: php-actions/composer@v6
2323
with:
2424
progress: yes
25-
php_version: 8.0
25+
php_version: 8.3
2626
version: 2
2727
- name: "PHP-CS-Fixer"
2828
run: vendor/bin/php-cs-fixer fix --dry-run

.github/workflows/unit-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ on:
1111
jobs:
1212
tests:
1313
runs-on: ubuntu-latest
14-
name: "Running on PHP 8.2"
14+
name: "Running Unit Tests"
15+
strategy:
16+
matrix:
17+
php: ['8.1', '8.2', '8.3']
1518

1619
steps:
1720
- uses: actions/checkout@v2
@@ -23,12 +26,12 @@ jobs:
2326
- uses: php-actions/composer@v6
2427
with:
2528
progress: yes
26-
php_version: 8.1
29+
php_version: ${{ matrix.php }}
2730
version: 2
2831
- uses: php-actions/phpunit@v3
2932
with:
3033
configuration: phpunit.xml.dist
31-
php_version: 8.1
34+
php_version: ${{ matrix.php }}
3235
memory_limit: 1024M
3336
version: 10
3437
testsuite: Unit

0 commit comments

Comments
 (0)