-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (46 loc) · 1.26 KB
/
gradle-retest.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
46
47
48
49
50
51
52
53
54
55
name: Retest on Comment
on:
issue_comment:
types: [created, edited, deleted]
permissions:
contents: read
issues: write
jobs:
retest:
if: contains(toLower(github.event.comment.body), 'retest')
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
lfs: false
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Create .env file
run: |
echo "${{ secrets.ALL_SECRET }}" > .env
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: 8.8
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-${{ runner.os }}
- name: Run tests
env:
SPRING_PROFILES_ACTIVE: local
ACTIONS_RUNNER_DEBUG: true
ACTIONS_STEP_DEBUG: true
run: |
./gradlew -g gradle/caches/ \
--build-cache --no-daemon \
test