-
Notifications
You must be signed in to change notification settings - Fork 1
93 lines (74 loc) · 2.18 KB
/
coverage.yaml
File metadata and controls
93 lines (74 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Update Test Coverage
on:
push:
pull_request:
jobs:
python:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
activate-environment: 'true'
enable-cache: true
- name: Install dependencies
run: |
uv sync --all-extras
uv pip install coverage
- name: Run Tests with Coverage
run: coverage run -m pytest
- name: Generate XML Coverage
run: coverage xml
- name: Upload Python coverage artifact
uses: actions/upload-artifact@v7
with:
name: python-coverage
path: coverage.xml
java:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Java
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
- name: Run Java Tests with Coverage
run: mvn test
- name: Upload Java coverage artifact
uses: actions/upload-artifact@v7
with:
name: java-coverage
path: target/site/jacoco/jacoco.xml
upload:
runs-on: ubuntu-latest
needs: [ python, java ]
steps:
- name: Download Python coverage
uses: actions/download-artifact@v7
with:
name: python-coverage
- name: Download Java coverage
uses: actions/download-artifact@v7
with:
name: java-coverage
path: jacoco
- name: Upload to Coveralls
uses: coverallsapp/github-action@v2
with:
files: coverage.xml jacoco/jacoco.xml
format: cobertura
- name: Upload Python report to Codacy
uses: codacy/codacy-coverage-reporter-action@v1.3.0
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.xml
- name: Upload Java report to Codacy
uses: codacy/codacy-coverage-reporter-action@v1.3.0
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: jacoco/jacoco.xml