Skip to content

Commit e7236bc

Browse files
committed
testing the build phase of content service
1 parent 779ed7b commit e7236bc

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ jobs:
2222
java-version: '11'
2323
cache: 'maven'
2424

25+
- name: Build Content Service
26+
working-directory: content-api
27+
run: |
28+
mvn clean install -DskipTests=true \
29+
-DCLOUD_STORE_GROUP_ID=${{ vars.CLOUD_STORE_GROUP_ID }} \
30+
-DCLOUD_STORE_ARTIFACT_ID=${{ vars.CLOUD_STORE_ARTIFACT_ID }} \
31+
-DCLOUD_STORE_VERSION=${{ vars.CLOUD_STORE_VERSION }}
32+
2533
- name: Run Tests
2634
working-directory: content-api
2735
run: |

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 can dance
49+
# Abcd anybody dance
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)