From ef7b5c65bf19ba2f33be25c232cf09adede11922 Mon Sep 17 00:00:00 2001 From: nefilim Date: Tue, 18 Jan 2022 10:17:44 -0700 Subject: [PATCH] fix test report publisher --- .github/workflows/ci-build.yaml | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index b3a07e6..7ed187c 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -56,14 +56,14 @@ jobs: uses: EnricoMi/publish-unit-test-result-action@v1 if: always() with: - files: build/test-results/**/*.xml + files: '**/build/test-results/**/*.xml' - name: Publish Test Report if: always() uses: actions/upload-artifact@v2 with: name: test-report - path: build/reports/tests/test/* + path: '**/build/reports/tests/test/*' - name: Stop Gradle daemons run: ./gradlew --stop \ No newline at end of file diff --git a/README.md b/README.md index 3910e55..b41ca6b 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,10 @@ The following [Algorithms](https://datatracker.ietf.org/doc/html/rfc7518) are su # Usage -Include the following dependency: `io.github.nefilim.kjwt:kjwt-core:0.4.0` in your build. +Include the following dependency: `io.github.nefilim.kjwt:kjwt-core:` in your build. -* Google KMS support also add: `io.github.nefilim.kjwt:kjwt-google-kms-grpc:0.4.8`. Documentation TODO. -* minimal JWKS support also add: `io.github.nefilim.kjwt:kjwt-jwks:0.4.8`. Documentation TODO. See [JWKSSpec](https://github.com/nefilim/kjwt/blob/main/jwks/src/test/kotlin/io/github/nefilim/kjwt/jwks/JWKSpec.kt#L57-L81) +* Google KMS support also add: `io.github.nefilim.kjwt:kjwt-google-kms-grpc:`. Documentation TODO. +* minimal JWKS support also add: `io.github.nefilim.kjwt:kjwt-jwks:`. Documentation TODO. See [JWKSSpec](https://github.com/nefilim/kjwt/blob/main/jwks/src/test/kotlin/io/github/nefilim/kjwt/jwks/JWKSpec.kt#L57-L81) Please make sure you have [Arrow Core](https://arrow-kt.io/docs/core/#Gradle-kotlin) in your dependencies.