We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdaf0eb commit d81acbfCopy full SHA for d81acbf
.github/workflows/build.yml
@@ -25,7 +25,7 @@ jobs:
25
strategy:
26
fail-fast: false
27
matrix:
28
- go: [1.16, 1.17, 1.18]
+ go: [1.17, 1.18, 1.19]
29
steps:
30
- name: Checkout
31
uses: actions/checkout@v3
cmd/jwt/main.go
@@ -3,7 +3,8 @@
3
//
4
// Example usage:
5
// The following will create and sign a token, then verify it and output the original claims.
6
-// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
+//
7
+// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
8
package main
9
10
import (
0 commit comments