-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 853 Bytes
/
ci.yml
File metadata and controls
36 lines (29 loc) · 853 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
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build & test
on:
pull_request:
push:
branches: [ main, release/* ]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
- uses: burrunan/gradle-cache-action@663fbad34e03c8f12b27f4999ac46e3d90f87eca # v3.0
name: Build with Gradle
with:
arguments: build
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v7
with:
name: Test Results Linux
path: '**/test-results/**/*.xml'