We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2043cd2 commit 1f8f6e1Copy full SHA for 1f8f6e1
.github/workflows/deploy.yml
@@ -21,6 +21,9 @@ jobs:
21
steps:
22
- name: Checkout code
23
uses: actions/checkout@v4
24
+
25
+ - name: Make gradlew executable
26
+ run: chmod +x ./gradlew
27
28
- name: Set up JDK 21
29
uses: actions/setup-java@v3
@@ -32,14 +35,15 @@ jobs:
32
35
uses: gradle/gradle-build-action@v2
33
36
34
37
- name: Run tests
- run: ./gradlew test
38
+ run: ./gradlew test --no-daemon
39
40
- name: Upload test results
41
uses: actions/upload-artifact@v4
42
if: always()
43
with:
44
name: test-results
45
path: build/test-results/
46
+ if-no-files-found: ignore
47
48
build:
49
name: Build and Push Image
0 commit comments