Files
spring-batch-extensions/.github/workflows/spring-batch-neo4j.yml
Mahmoud Ben Hassine edae1738c5 Add module for Neo4j
This initial import is a copy of the code
from Spring Batch v4.3.3.
2021-09-01 10:03:38 +02:00

22 lines
450 B
YAML

name: Spring Batch Neo4j
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml
working-directory: spring-batch-neo4j