Skip to content

Unit/Integration Test #7

Unit/Integration Test

Unit/Integration Test #7

Workflow file for this run

name: Unit and Integration Tests
run-name: Unit/Integration Test
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
Unit_Test:
runs-on: ubuntu-20.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Go ENV
uses: actions/setup-go@v4
with:
go-version: '1.20.5'
- name: Install Dependencies
run: sudo apt install libzmq3-dev
- name: Run Unit Tests
run: make test
Integration_Test:
runs-on: ubuntu-20.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt install libzmq3-dev
- name: Build Containers
run: make docker
- name: Run Integration_Test
run: make integration-test