Skip to content

Commit 3444697

Browse files
committed
Update the action
1 parent 4d77b3a commit 3444697

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

.github/workflows/content-service-pr-check.yml

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,26 @@ jobs:
2121
java-version: '11'
2222
cache: 'maven'
2323

24-
- name: Build Content Service
25-
run: |
26-
mvn clean install -DskipTests=true \
27-
-DCLOUD_STORE_GROUP_ID=${{ vars.CLOUD_STORE_GROUP_ID }} \
28-
-DCLOUD_STORE_ARTIFACT_ID=${{ vars.CLOUD_STORE_ARTIFACT_ID }} \
29-
-DCLOUD_STORE_VERSION=${{ vars.CLOUD_STORE_VERSION }}
24+
# - name: Build Content Service
25+
# run: |
26+
# mvn clean install -DskipTests=true \
27+
# -DCLOUD_STORE_GROUP_ID=${{ vars.CLOUD_STORE_GROUP_ID }} \
28+
# -DCLOUD_STORE_ARTIFACT_ID=${{ vars.CLOUD_STORE_ARTIFACT_ID }} \
29+
# -DCLOUD_STORE_VERSION=${{ vars.CLOUD_STORE_VERSION }}
30+
31+
# - name: Run Tests
32+
# working-directory: content-api/content-service
33+
# run: |
34+
# mvn test -pl content-service -am \
35+
# -DCLOUD_STORE_GROUP_ID=${{ vars.CLOUD_STORE_GROUP_ID }} \
36+
# -DCLOUD_STORE_ARTIFACT_ID=${{ vars.CLOUD_STORE_ARTIFACT_ID }} \
37+
# -DCLOUD_STORE_VERSION=${{ vars.CLOUD_STORE_VERSION }}
3038

31-
- name: Run Tests
39+
# Build and test content-service
40+
- name: Build and Test Content Service
3241
working-directory: content-api/content-service
3342
run: |
34-
mvn test -pl content-service -am \
43+
mvn clean verify \
3544
-DCLOUD_STORE_GROUP_ID=${{ vars.CLOUD_STORE_GROUP_ID }} \
3645
-DCLOUD_STORE_ARTIFACT_ID=${{ vars.CLOUD_STORE_ARTIFACT_ID }} \
3746
-DCLOUD_STORE_VERSION=${{ vars.CLOUD_STORE_VERSION }}

content-api/content-service/conf/application.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ akka {
4646

4747
# Max number of threads to cap factor-based parallelism number to
4848
parallelism-max = 64
49-
# Abcd anybody dance now or never
49+
# Abcd anybody dance now or never imp
5050
# Setting to "FIFO" to use queue like peeking mode which "poll" or "LIFO" to use stack
5151
# like peeking mode which "pop".
5252
task-peeking-mode = "FIFO"

0 commit comments

Comments
 (0)