feat(resolv): refactored the Context
JSON
format serialization st…
#61
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
name: Go | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21 | |
- name: bifrost-auth Build Test | |
run: go build -v -race | |
working-directory: ./cmd/bifrost-auth | |
- name: bifrost Build Test | |
run: go build -v -race | |
working-directory: ./cmd/bifrost | |
- name: ng_conf_format Build Test | |
run: go build -v -race | |
working-directory: ./cmd/ng_conf_format | |
# - name: Test | |
# run: go test -v ./... |