Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit f246c03

Browse files
committed
[SORMAS-Foundation#3730] github actions ci
1 parent 88a4b6a commit f246c03

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow will build a Java project with Maven
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+
name: Java CI with Maven
5+
6+
on:
7+
push:
8+
branches: [ development ]
9+
pull_request:
10+
branches: [ development ]
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
java: [ 1.8, 1.11 ]
18+
name: Test with Java ${{ matrix.java }}
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: Set up JDK ${{ matrix.java }}
22+
uses: actions/setup-java@v1
23+
with:
24+
java-version: ${{ matrix.java }}
25+
- name: Build with Maven
26+
run: |
27+
cd sormas-base
28+
mvn install -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn

0 commit comments

Comments
 (0)