Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Commit cb49b20

Browse files
Add simple GitHub actions build.
1 parent 100ba83 commit cb49b20

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/maven.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
name: with jdk ${{ matrix.java }}
12+
runs-on: ubuntu-latest
13+
env:
14+
SDN_RX_NEO4J_REPOSITORY: neo4j/neo4j-experimental
15+
SDN_RX_NEO4J_VERSION: 4.0.0-beta03mr03
16+
strategy:
17+
matrix:
18+
java: [ '8', '11', '13' ]
19+
steps:
20+
- uses: actions/checkout@v1
21+
- name: Set up JDK
22+
uses: actions/setup-java@v1
23+
with:
24+
java-version: ${{ matrix.java }}
25+
- name: Run Maven build
26+
run: ./mvnw --no-transfer-progress clean verify
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.1/apache-maven-3.6.1-bin.zip

0 commit comments

Comments
 (0)