-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (42 loc) · 1.03 KB
/
gradle.yml
File metadata and controls
52 lines (42 loc) · 1.03 KB
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
45
46
47
48
49
50
51
52
name: Java CI with Gradle
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: '0 4 * * 6'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository with submodules
uses: actions/checkout@v6
with:
path: markup-blitz
submodules: recursive
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Run the tests
run: ./gradlew test
working-directory: markup-blitz
- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
with:
name: test-results
path: markup-blitz/build/test-results/test
- name: Upload JUnit HTML report
if: always()
uses: actions/upload-artifact@v6
with:
name: test-report
path: markup-blitz/build/reports/tests/test