-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (45 loc) · 1.28 KB
/
run_unit_tests.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Run unit tests
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java-version: [21]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: |
~/.m2/repository
C:\Users\runneradmin\.m2\repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven on Linux
if: runner.os == 'Linux'
run: mvn -B clean install -DinteractiveMode=false
- name: Build with Maven on Windows
if: runner.os == 'Windows'
run: cmd /c mvn -B clean install -DinteractiveMode=false
- name: Run unit tests on Linux
if: runner.os == 'Linux'
run: mvn -B test -DinteractiveMode=false
- name: Run unit tests on Windows
if: runner.os == 'Windows'
run: cmd /c mvn -B test -DinteractiveMode=false