Skip to content

feat: add ci pipeline for testing gin-mongo native #8

feat: add ci pipeline for testing gin-mongo native

feat: add ci pipeline for testing gin-mongo native #8

Workflow file for this run

name: Test Stage
on:
pull_request:
jobs:
printHello:
runs-on: ubuntu-latest
steps:
- name: Print Hello
run: echo "Hello"
build:
uses: gouravkrosx/keploy/.github/workflows/build_stage.yml@test-bench-workflow
test-go-mongo:
needs: build # Ensure this job runs after the build job
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download Keploy Binary
uses: actions/download-artifact@v2
with:
name: keploy-binary
path: /usr/local/bin
- name: Checkout the samples-go repository
uses: actions/checkout@v2
with:
repository: keploy/samples-go
path: samples-go
- name: Run samples-go application
run: |
cd samples-go/gin-mongo
source ./../../.github/workflows/test-bench-workflow-scripts/mongo/go-mongo-linux-1.sh