Fix GH-952: OGM returns empty result if query results contains nodes and rels with same native id #381
Workflow file for this run
This file contains 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: build | |
on: | |
push: | |
branches: | |
- master | |
- 3.2.x | |
pull_request: | |
jobs: | |
build: | |
name: Build and test against Neo4j 5 | |
runs-on: ubuntu-latest | |
env: | |
NEO4J_OGM_NEO4J_ACCEPT_AND_USE_COMMERCIAL_EDITION: yes | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 8 | |
- name: Run Maven build | |
run: > | |
./mvnw --no-transfer-progress clean verify -Pneo4j-3.5 | |
- name: Trigger codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |