-
Notifications
You must be signed in to change notification settings - Fork 56
59 lines (52 loc) · 1.38 KB
/
maven.yml
File metadata and controls
59 lines (52 loc) · 1.38 KB
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
56
57
58
59
name: Maven
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
merge_group:
types:
- checks_requested
permissions:
contents: read
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
# - macos-latest
- ubuntu-latest
# - windows-latest
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available).
# Reference: https://adoptium.net/support/
java:
- 11
- 17
- 21
- 25
browser:
- chromeHeadless
- firefox
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build with Maven and Run tests with a virtual display
run: xvfb-run ./mvnw --batch-mode --no-transfer-progress verify --define browser=${{ matrix.browser }}
- name: Upload Test Reports
uses: actions/upload-artifact@v7
if: failure()
with:
name: ${{ matrix.os }}-${{ matrix.java }}-${{ matrix.browser }}-test-reports
path: |
**/surefire-reports/*
**/failsafe-reports/*