Bump matrix to support latest go version (go1.19) (#231)

* Bump matrix to support latest go version (go1.19)

* Fix comment
This commit is contained in:
Michael Fridman 2022-08-20 10:53:04 -04:00 committed by GitHub
parent fdaf0eb0e0
commit d81acbf7f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [1.16, 1.17, 1.18]
go: [1.17, 1.18, 1.19]
steps:
- name: Checkout
uses: actions/checkout@v3

View File

@ -3,7 +3,8 @@
//
// Example usage:
// The following will create and sign a token, then verify it and output the original claims.
// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
//
// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
package main
import (