Remove the Defaults for request_buffering and response_buffering to make the provider compatible with Kong 2.0.x #62
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: gokong build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build: | |
name: building gokong | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
stable: 'false' | |
go-version: '1.16.6' # The Go version to download (if necessary) and use. | |
- run: go version | |
- name: Run test | |
run: make test | |