From 73d6ef31529c4ae64e3eb6ebfc87008f1cb8c0bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Barc=C3=A9los?= Date: Thu, 8 Feb 2024 13:29:12 +0100 Subject: [PATCH] Remove 3.5 conditional --- .github/workflows/node.js.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index d63ca3e..929b38a 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -48,11 +48,7 @@ jobs: steps: - name: Download dataset run: curl --fail --output /tmp/movies.cypher https://raw.githubusercontent.com/neo4j-graph-examples/movies/7e75003d2d32bf42ef9c740d1321a310fac1d1a6/scripts/movies.cypher - - name: Import dataset (Neo4j 3.5) - if: ${{ startsWith(matrix.neo4j-version, '3.5') }} - run: docker exec --interactive neo4j-e2e sh -c 'cat /movies/movies.cypher | cypher-shell -u neo4j -p abcdefghi' - name: Import dataset - if: ${{ !startsWith(matrix.neo4j-version, '3.5') }} run: docker exec --interactive neo4j-e2e cypher-shell -u neo4j -p abcdefghi --file /movies/movies.cypher - name: Check out project sources uses: actions/checkout@v4