Fix newagent #98
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: Golang On Docker | |
on: [pull_request] | |
jobs: | |
golang_docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run build script | |
run: | | |
source ./.github/workflows/test_workflow_scripts/update-docker.sh | |
- name: Build binary | |
run: | | |
go build -tags=viper_bind_struct -o keployv2 | |
- name: Checkout the samples-go repository | |
uses: actions/checkout@v2 | |
with: | |
repository: keploy/samples-go | |
path: samples-go | |
- name: Run gin-mongo application | |
run: | | |
cd samples-go/gin-mongo | |
source ./../../.github/workflows/test_workflow_scripts/golang-docker.sh | |