-
-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (38 loc) · 1.02 KB
/
run-tests.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
40
41
42
43
44
45
name: "Unit tests"
on:
# Allows to run this workflow when a commit it pushed to the branch
push:
paths-ignore:
- "**/*.md"
branches:
- main
# Allows to run this workflow when a Pull Request is made with the set target branch
pull_request:
paths-ignore:
- "**/*.md"
branches:
- main
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up JDK
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
cache: "gradle"
- name: Cache Gradle and wrapper
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Run unit tests
run: ./gradlew testReleaseUnitTest