-
-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (29 loc) · 582 Bytes
/
ci.yml
File metadata and controls
31 lines (29 loc) · 582 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
name: Test lib and docs
on:
push:
branches:
- "**"
tags-ignore:
- "v*"
pull_request:
branches:
- "**"
tags-ignore:
- "v*"
jobs:
test-application:
name: Test the Application
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
- name: Clean
run: ./gradlew clean
- name: Test
run: ./gradlew check
- name: Build
run: ./gradlew assemble