-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.13 KB
/
check.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
---
name: Check
on:
workflow_call:
inputs:
projectDir:
description: "project to be checked (path to project directory)"
type: string
required: false
default: '.'
secrets:
GRADLE_ENCRYPTION_KEY:
required: true
CODECOV_TOKEN:
required: false
jobs:
gradle-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v3
with:
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
- name: Check with Gradle
run: ./gradlew -p ${{ inputs.projectDir }} clean check
- name: Generate Coverage report
if: ${{ inputs.projectDir == '.' }}
run: ./gradlew -p ${{ inputs.projectDir }} koverXmlReport
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
if: ${{ inputs.projectDir == '.' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}