Skip to content

Getting the integration testing workflow working. Tests couldnt find … #3

Getting the integration testing workflow working. Tests couldnt find …

Getting the integration testing workflow working. Tests couldnt find … #3

Workflow file for this run

name: 'Test'
on:
workflow_dispatch:
push:
jobs:
unit-test:
runs-on: ubuntu-22.04
steps:
- name: "checkout"
uses: actions/checkout@v3
with:
ref: ${{ env.GITHUB_REF }}
- name: "run tests"
run: |
go test -v ./...
integration-test:
runs-on: ubuntu-22.04
steps:
- name: "checkout"
uses: actions/checkout@v3
with:
ref: ${{ env.GITHUB_REF }}
- name: "install"
run: |
go build .
pwd >> $GITHUB_PATH
- name: "run integration tests"
run: |
./bin/cicd_integration.sh