-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from reugn/develop
v0.3.1
- Loading branch information
Showing
6 changed files
with
85 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,27 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
go-version: [1.15.x, 1.16.x] | ||
go-version: [1.21.x] | ||
steps: | ||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Test | ||
run: go test ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,36 @@ | ||
module github.com/reugn/auth-server | ||
|
||
go 1.16 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/aerospike/aerospike-client-go/v5 v5.6.0 | ||
github.com/aerospike/aerospike-client-go/v6 v6.13.0 | ||
github.com/golang-jwt/jwt/v4 v4.5.0 | ||
github.com/hashicorp/vault/api v1.9.2 | ||
golang.org/x/crypto v0.12.0 | ||
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 | ||
) | ||
|
||
require ( | ||
github.com/cenkalti/backoff/v3 v3.0.0 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.0 // indirect | ||
github.com/go-test/deep v1.0.7 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.1.0 | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-hclog v0.16.2 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.6.7 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect | ||
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/hcl v1.0.1-vault-3 // indirect | ||
github.com/hashicorp/vault/api v1.1.2-0.20210713235431-1fc8af4c041f | ||
github.com/hashicorp/vault/sdk v0.2.2-0.20211005222123-93e045565e4a // indirect | ||
github.com/mattn/go-colorable v0.1.11 // indirect | ||
github.com/mitchellh/mapstructure v1.3.3 // indirect | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 // indirect | ||
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sync v0.2.0 // indirect | ||
golang.org/x/text v0.12.0 // indirect | ||
) |
Oops, something went wrong.