Skip to content

Commit

Permalink
fix test report publisher (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
nefilim authored Jan 18, 2022
1 parent 70f124a commit 55148f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<latest version>` 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:<latest version>`. Documentation TODO.
* minimal JWKS support also add: `io.github.nefilim.kjwt:kjwt-jwks:<latest version>`. 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.

Expand Down

0 comments on commit 55148f6

Please sign in to comment.