Skip to content

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

feat: add ci pipeline for testing gin-mongo native

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

Workflow file for this run

name: Test Stage
on:
pull_request:
jobs:
build:
uses: ./build_stage.yml # Call the build workflow

Check failure on line 8 in .github/workflows/test_stage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_stage.yml

Invalid workflow file

invalid value workflow reference: no version specified
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