-
Notifications
You must be signed in to change notification settings - Fork 6
32 lines (25 loc) · 828 Bytes
/
check.yml
File metadata and controls
32 lines (25 loc) · 828 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
name: Check
on:
pull_request:
push:
branches: [master]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
- uses: actions/setup-java@a18c333f3f14249953dab3e186e5e21bf3390f1d
with:
distribution: 'zulu'
java-version: 17
- uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
- name: Setup Gradle
uses: gradle/gradle-build-action@6095a76664413da4c8c134ee32e8a8ae900f0f1f
with:
gradle-version: wrapper
- name: Run gradle check
run: ./gradlew check
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70
with:
files: build/reports/test/jacocoTestReport.xml
fail_ci_if_error: true