From e1083ae08ba7815f412cd4454db292e34f6ed655 Mon Sep 17 00:00:00 2001 From: Marijn van Wezel Date: Sun, 1 Jan 2023 23:26:08 +0100 Subject: [PATCH] Remove currently empty suite of integration tests from CI --- .github/workflows/test.yml | 48 -------------------------------------- 1 file changed, 48 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea0d7ea..ebca4db 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,51 +48,3 @@ jobs: - name: Run mutation tests run: XDEBUG_MODE=coverage php vendor/bin/infection --show-mutations --min-msi=${{ env.MINIMUM_MSI_PERCENTAGE }} --threads=4 - - - integration: - name: "Integration testing (PHP ${{ matrix.php-version }}, Neo4j ${{ matrix.neo4j-version }})" - runs-on: "ubuntu-22.04" - continue-on-error: true - - strategy: - matrix: - neo4j-version: [ "4.2", "4.3", "4.4" ] - php-version: [ "7.4", "8.0", "8.1", "8.2" ] - - services: - neo4j: - image: neo4j:${{ matrix.neo4j-version }} - env: - NEO4J_AUTH: none - ports: - - 7687:7687 - - 7474:7474 - options: >- - --health-cmd "wget -q --method=HEAD http://localhost:7474 || exit 1" - --health-start-period "60s" - --health-interval "30s" - --health-timeout "15s" - --health-retries "5" - - env: - COMPOSER_VERSION: 2 - COVERAGE_DRIVER: none - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php-version }} - coverage: ${{ env.COVERAGE_DRIVER }} - ini-values: memory_limit=512M - tools: composer:${{ env.COMPOSER_VERSION }} - - - name: Install dependencies - run: composer install --no-interaction --prefer-dist --no-progress - - - name: Run integration tests - run: php vendor/bin/phpunit --testsuite integration --no-coverage