Skip to content

Commit 59a790e

Browse files
Merge branch 'develop' of github.com:LorenzBuehmann/DL-Learner into develop
2 parents f569d12 + 465cdac commit 59a790e

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Java CI
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
8+
9+
jobs:
10+
build:
11+
name: Build on Java ${{ matrix.java_version }} and ${{ matrix.os }}
12+
strategy:
13+
matrix:
14+
java_version: ['1.8', '9.0.x']
15+
os: [ubuntu-latest, windows-latest, macOS-latest]
16+
17+
runs-on: ${{ matrix.os }}
18+
19+
steps:
20+
- uses: actions/checkout@v1
21+
- name: Set up JDK ${{ matrix.java_version }}
22+
uses: actions/setup-java@v1
23+
with:
24+
java-version: ${{ matrix.java_version }}
25+
architecture: x64
26+
- name: Build with Maven
27+
run: mvn compile --file pom.xml

0 commit comments

Comments
 (0)