-
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (47 loc) · 1.38 KB
/
maven.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
name: Maven CI/CD
on:
push:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
support_java_lts_versions:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17, 21]
steps:
- uses: actions/checkout@v4
- name: ☕ Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: 📦 Install dependencies
run: mvn -P test install
- name: 🧪 Run tests with coverage
run: mvn -P test test
codacy_coverage:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
# https://github.com/actions/setup-java?tab=readme-ov-file#caching-packages-dependencies
- name: ☕ Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: 📦 Install dependencies
run: mvn -P test install
- name: 🧪 Run tests with coverage
run: mvn -P test test
- name: 🤖 Run codacy-coverage-reporter
uses: codacy/[email protected]
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: universal-coverage/target/site/jacoco-aggregate/jacoco.xml