-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1.03 KB
/
linux-build.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
name: Ubuntu
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
- name: Archive test report
uses: actions/upload-artifact@v2
with:
name: Test report
path: build/reports/tests/test
- name: Archive JaCoCo report
uses: actions/upload-artifact@v2
with:
name: JaCoCo report
path: build/reports/jacoco/test
- name: Upload coverage to codecov
uses: codecov/codecov-action@v2
with:
directory: ./build/reports/jacoco/test/
files: jacocoTestReport.xml
name: codecov-umbrella
verbose: true