ci: Update Neo4j connection string in integration test workflow #343
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#name: Integration Tests | |
# | |
#on: | |
# push: | |
# branches: | |
# - main | |
# pull_request: | |
# branches: | |
# - main | |
# | |
#jobs: | |
# tests: | |
# runs-on: ubuntu-latest | |
# env: | |
# CONNECTION: ${{ secrets.AURA_PRO }} | |
# name: "Running on all provided Aura instances" | |
# | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Cache Composer dependencies | |
# uses: actions/cache@v2 | |
# with: | |
# path: /tmp/composer-cache | |
# key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
# - uses: php-actions/composer@v6 | |
# with: | |
# progress: yes | |
# php_version: 8.1 | |
# version: 2 | |
# - name: clean database | |
# run: CONNECTION=$CONNECTION php tests/clean-database.php | |
# - uses: php-actions/phpunit@v3 | |
# with: | |
# configuration: phpunit.xml.dist | |
# php_version: 8.1 | |
# memory_limit: 1024M | |
# version: 10 | |
# testsuite: Integration | |
# bootstrap: vendor/autoload.php |