-
Notifications
You must be signed in to change notification settings - Fork 28
39 lines (37 loc) · 1012 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: Gradle Build And Test
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: gradle
- name: Detect secrets
run: |
pip install detect-secrets
git ls-files -z | xargs -0 detect-secrets-hook --baseline .secrets.baseline
- name: Build with Gradle
run: ./gradlew --no-daemon build -Pjava8=true
- name: Upload Unit Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: Unit Tests
path: |
components/**/build/reports/tests/test/**
components/**/build-test-results/**
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.componentName }}-drop
path: ./**/build/*