forked from bwaldvogel/mongo-java-server
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (34 loc) · 817 Bytes
/
gradle.yml
File metadata and controls
39 lines (34 loc) · 817 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
39
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
steps:
- uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew build
publishCoverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 8
- name: Publish coverage
run: ./gradlew build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
files: ./build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml