-
Notifications
You must be signed in to change notification settings - Fork 197
38 lines (31 loc) · 850 Bytes
/
coverage.yml
File metadata and controls
38 lines (31 loc) · 850 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
34
35
36
37
38
name: Code Coverage
on:
push:
branches:
- master
permissions:
contents: read
jobs:
code-coverage:
runs-on: ubuntu-latest-16-cores
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v5
with:
java-version: '11'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v5
- name: Run Tests
run: ./gradlew test -x spotlessCheck -x spotlessApply -Pjacoco
continue-on-error: true
- name: Run Test Coverage
run: ./gradlew testCodeCoverageReport -Pjacoco
- name: Publish Coverage
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./gradlew coverallsJacoco -Pjacoco