Skip to content

Commit 0db9914

Browse files
authored
Add test-summary to gh workflow (wiringbits#37)
* Add test-summary to gh workflow * scalafmt
1 parent 4fc38d1 commit 0db9914

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Diff for: .github/workflows/pull_request.yml

+6
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,9 @@ jobs:
3737

3838
- name: Run tests
3939
run: CI=true sbt +test
40+
41+
- name: Test summary
42+
if: always() # Always run, even if previous steps failed
43+
uses: test-summary/action@v2
44+
with:
45+
paths: "**/target/test-reports/*.xml"

Diff for: spra-play-server/src/test/scala/controllers/AdminControllerSpec.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ class AdminControllerSpec extends PlayPostgresSpec with AdminUtils {
680680

681681
responseMetadata.head.nonEmpty mustBe true
682682
}
683-
683+
684684
"return new user id" in withApiClient { implicit client =>
685685
val user = createUser.futureValue
686686
val response = client.getTableMetadata(usersSettings.tableName, List("name", "ASC"), List(0, 9), "{}").futureValue

0 commit comments

Comments
 (0)