Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix test report publisher #16

Merged
merged 1 commit into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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