Added action for build without tests

pull/1580/head
Dominik František Bučík 2021-05-31 10:31:23 +02:00 committed by Dominik Frantisek Bucik
parent a608ef3fbf
commit e9ded1ce17
No known key found for this signature in database
GPG Key ID: 25014C8DB2E7E62D
1 changed files with 24 additions and 0 deletions

24
.github/workflows/maven-build.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Maven build without running tests
on: [ push, pull_request ]
jobs:
test:
name: JDK ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11' ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-jdk${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-jdk${{ matrix.java }}-
- name: Build with Maven
run: mvn -B clean install -DskipTests