1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- php : [' 8.1.31', ' 8.3.17' ]
14+ php : [" 8.1.31", " 8.3.17" ]
1515 name : " Running on PHP ${{ matrix.php }} with a Neo4j 4 instance connecting over all available protocols"
1616
1717 steps :
@@ -23,28 +23,28 @@ jobs:
2323 - uses : hoverkraft-tech/compose-action@v2.0.2
2424 name : Start services
2525 with :
26- compose-file : ' ./docker-compose-neo4j-4.yml'
27- up-flags : ' --build --remove-orphans'
26+ compose-file : " ./docker-compose-neo4j-4.yml"
27+ up-flags : " --build --remove-orphans"
2828 - name : Composer install
2929 run : |
30- docker compose run client composer install
30+ docker compose -f docker-compose-neo4j-4.yml run client composer install
3131 - name : Test neo4j://
3232 run : |
33- docker compose run \
33+ docker compose -f docker-compose-neo4j-4.yml run \
3434 -e PHP_VERSION=${{ matrix.php }} \
3535 -e CONNECTION=neo4j://neo4j:testtest@neo4j \
3636 client ./vendor/bin/phpunit -c phpunit.xml.dist --testsuite Integration
3737 - name : Test bolt://
3838 run : |
39- docker compose run \
39+ docker compose -f docker-compose-neo4j-4.yml run \
4040 -e PHP_VERSION=${{ matrix.php }} \
4141 -e CONNECTION=bolt://neo4j:testtest@neo4j \
4242 client ./vendor/bin/phpunit -c phpunit.xml.dist --testsuite Integration
4343 tests-v5 :
4444 runs-on : ubuntu-latest
4545 strategy :
4646 matrix :
47- php : [' 8.1.31', ' 8.3.17' ]
47+ php : [" 8.1.31", " 8.3.17" ]
4848 name : " Running on PHP ${{ matrix.php }} with a Neo4j 5 instance connecting over all available protocols"
4949
5050 steps :
5656 - uses : hoverkraft-tech/compose-action@v2.0.2
5757 name : Start services
5858 with :
59- compose-file : ' ./docker-compose.yml'
60- up-flags : ' --build'
59+ compose-file : " ./docker-compose.yml"
60+ up-flags : " --build"
6161 - name : Composer install
6262 run : |
6363 docker compose run --rm client composer install
0 commit comments