Support template vars in req body + memoize nested response body fields + memoize request body fields #61
Workflow file for this run
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: Build & Test API Runner | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go Env | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "^1.21.0" | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Go test | |
run: go test | |
- name: Build apirunner binary | |
run: make -C cmd/apirunner build | |
- name: GoReleaser Check | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: check |