-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (35 loc) · 879 Bytes
/
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
40
41
42
43
44
name: build-on-push
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
checks: write
pull-requests: write
contents: write
issues: read
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
cache: gradle
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
with:
dependency-graph: generate-and-submit
- name: Build
run: ./gradlew build --no-daemon
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always()
with:
include_passed: true
detailed_summary: true
report_paths: '**/build/test-results/test/TEST-*.xml'