Skip to content

feat: Update bolt to 7.1.4 (#240) #231

feat: Update bolt to 7.1.4 (#240)

feat: Update bolt to 7.1.4 (#240) #231

name: Integration Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.3]
env:
PHP_VERSION: ${{ matrix.php }}
CONNECTION: neo4j://neo4j:testtest@localhost:7687
name: "Running on PHP ${{ matrix.php }} with a Neo4j 5.20-enterprise cluster"
steps:
- uses: actions/checkout@v2
- name: Populate .env
run: |
echo "PHP_VERSION=${{ matrix.php }}" > .env
echo "CONNECTION=neo4j://neo4j:testtest@neo4j" >> .env
- uses: hoverkraft-tech/[email protected]
name: Start services
with:
compose-file: './docker-compose.yml'
up-flags: '--build --remove-orphans'
- name: Test
run: |
docker compose run client composer install
docker compose run client ./vendor/bin/phpunit -c phpunit.xml.dist --testsuite Integration