-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 849 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
name: Build & Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
# - name: Build
# FIXME build stuck at some point on CI, need investigation
# run: ./gradlew --no-daemon :tasks-app-android:assembleDebug :tasks-app-desktop:assemble
# - name: Test
# run: ./gradlew --no-daemon test
- name: Publish Test Reports
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'