Skip to content

Commit 04121eb

Browse files
committed
updated action
1 parent a7b03eb commit 04121eb

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Content Service PR Checks
33
on:
44
push:
55
paths:
6-
- 'content-api/content-service/**'
7-
- 'content-api/content-actors/**' # Including actors as it contains core logic
6+
- 'content-api/**'
87

98
jobs:
109
test-and-analyze:
@@ -23,15 +22,17 @@ jobs:
2322
cache: 'maven'
2423

2524
- name: Build Content Service
25+
working-directory: content-api
2626
run: |
2727
mvn clean install -DskipTests=true \
2828
-DCLOUD_STORE_GROUP_ID=${{ vars.CLOUD_STORE_GROUP_ID }} \
2929
-DCLOUD_STORE_ARTIFACT_ID=${{ vars.CLOUD_STORE_ARTIFACT_ID }} \
3030
-DCLOUD_STORE_VERSION=${{ vars.CLOUD_STORE_VERSION }}
3131
3232
- name: Run Tests
33+
working-directory: content-api
3334
run: |
34-
mvn test -pl content-service \
35+
mvn test -pl content-service -am \
3536
-DCLOUD_STORE_GROUP_ID=${{ vars.CLOUD_STORE_GROUP_ID }} \
3637
-DCLOUD_STORE_ARTIFACT_ID=${{ vars.CLOUD_STORE_ARTIFACT_ID }} \
3738
-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
49+
# Abcd anybody dance no
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)