-
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (30 loc) · 894 Bytes
/
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
name: Maven CI/CD
on:
push:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build_and_test:
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 install
- name: 🧪 Run tests with coverage
run: mvn 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