File tree Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -22,20 +22,22 @@ jobs:
22
22
run : gradle wrapper
23
23
- name : Grant execute permission for gradlew
24
24
run : chmod +x gradlew
25
- # - name: Run automated tests
26
- # run: ./gradlew test -i
25
+ - name : Run automated tests
26
+ run : ./gradlew test -i --no-daemon
27
27
- id : file_changes
28
28
29
29
- name : Run Code Style Check
30
- run : ./gradlew checkstyleCI -i
30
+ run : ./gradlew checkstyleCI -i --no-daemon
31
31
env :
32
32
MODIFIED_FILES : ${{ steps.file_changes.outputs.files}}
33
33
- name : Run PMD Quality Check
34
- run : ./gradlew pmdCI -i
34
+ run : ./gradlew pmdCI -i --no-daemon
35
35
env :
36
36
MODIFIED_FILES : ${{ steps.file_changes.outputs.files}}
37
37
- name : Run Spotbugs Quality Check
38
- run : ./gradlew spotbugsCI -i
38
+ run : ./gradlew spotbugsCI -i --no-daemon
39
+ env :
40
+ MODIFIED_FILES : ${{ steps.file_changes.outputs.files}}
39
41
40
42
build-windows :
41
43
52
54
- name : Grant execute permission for gradlew
53
55
run : chmod +x gradlew
54
56
- name : Run automated tests
55
- run : ./gradlew test -i
57
+ run : ./gradlew test -i --no-daemon
56
58
57
59
build-macos :
58
60
69
71
- name : Grant execute permission for gradlew
70
72
run : chmod +x gradlew
71
73
- name : Run automated tests
72
- run : ./gradlew test -i
74
+ run : ./gradlew test -i --no-daemon
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
+ <!--
3
+ /**
4
+ * Copyright © Magento, Inc. All rights reserved.
5
+ * See COPYING.txt for license details.
6
+ */
7
+ -->
2
8
<!DOCTYPE module PUBLIC
3
9
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
4
10
"https://checkstyle.org/dtds/configuration_1_3.dtd">
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
-
2
+ <!--
3
+ /**
4
+ * Copyright © Magento, Inc. All rights reserved.
5
+ * See COPYING.txt for license details.
6
+ */
7
+ -->
3
8
<ruleset name =" Custom Rules"
4
9
xmlns =" http://pmd.sourceforge.net/ruleset/2.0.0"
5
10
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
You can’t perform that action at this time.
0 commit comments