Skip to content

Commit

Permalink
ci: add multiple neo4j versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-ince committed Feb 17, 2025
1 parent 9a66524 commit e6ff795
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,23 @@ on:

jobs:
build:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
neo4j-image: [ "neo4j:4.4", "neo4j:4.4-enterprise" "neo4j:5", "neo4j:5-enterprise", "neo4j:2025-enterprise" ]
name: Build and test with ${{ matrix.neo4j-image }}
steps:
- uses: actions/checkout@v4

- name: Set up JDK 11
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
cache: 'maven'

- name: Build with Maven
run: mvn -B clean test --file pom.xml --no-transfer-progress
- name: Build and run tests
env:
NEO4J_IMAGE: ${{ matrix.neo4j-image }}
run: mvn -B clean verify --file pom.xml --no-transfer-progress

0 comments on commit e6ff795

Please sign in to comment.