forked from eclipse-collections/eclipse-collections
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 937 Bytes
/
unit.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Unit tests
on: [push, pull_request]
jobs:
applications:
name: Unit Test ${{ matrix.java-version }}
strategy:
matrix:
os: [ubuntu-latest]
java-version: [8, 11]
runs-on: ${{ matrix.os }}
env:
JAVA_VERSION: ${{ matrix.java-version }}
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set Maven Wrapper
run: mvn -N io.takari:maven:0.7.7:wrapper -Dmaven=3.6.3
- name: Set JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
- name: Unit-Test
run: ./mvnw verify --no-transfer-progress
env:
MAVEN_OPTS: "-Xmx1g"