Skip to content

debug: add tester action in keploy repo #7

debug: add tester action in keploy repo

debug: add tester action in keploy repo #7

Workflow file for this run

name: Build Keploy Binary
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build binary
run: go build -tags=viper_bind_struct -cover -o keployB
- name: Upload Keploy Binary as Artifact
uses: actions/upload-artifact@v4
with:
name: keploy-binary
path: keployB
# Add Jobs for testing different applications here.
test-go-mongo-1:
needs: build
uses: ./.github/workflows/test-bench/test-go-mongo-1.yml

Check failure on line 25 in .github/workflows/build_stage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_stage.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
test-go-mongo-2:
needs: build
uses: ./.github/workflows/test-bench/test-go-mongo-2.yml
# Wait for all the test workflows before getting the coverage
get-coverage:
needs: [test-go-mongo-1, test-go-mongo-2]
uses: ./.github/workflows/coverage_stage.yml
#https://github.com/marketplace/actions/delete-artifact