fix: adds timeout to the destination connection request in proxy (#1680) #10
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: sample-run | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "1.20" | |
- name: Build Keploy | |
run: | | |
go build -v ./... | |
- name: Build arm | |
run: GOOS=linux GOARCH=arm64 go build -v ./... |