-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (27 loc) · 799 Bytes
/
ci.yaml
File metadata and controls
33 lines (27 loc) · 799 Bytes
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
name: Run tests and upload coverage
on:
push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
distribution: 'graalvm'
java-version: 22
- name: Install dependencies
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Run tests and collect coverage
run: make test && mvn jacoco:report
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
continue-on-error: true
with:
file: ./target/site/jacoco/jacoco.xml
token: ${{ secrets.CODECOV_TOKEN }}