Skip to content

Unit/Integration Test #25

Unit/Integration Test

Unit/Integration Test #25

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-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Go ENV
uses: actions/setup-go@v4
with:
go-version: '1.20.8'
- name: Install Dependencies
run: sudo apt install libzmq3-dev
- name: Run Unit Tests
run: make test
Integration_Test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Go ENV
uses: actions/setup-go@v4
with:
go-version: '1.20.8'
- name: Install Dependencies
run: sudo apt install libzmq3-dev
- name: Build Containers
run: make -j2 docker
- name: Download go-mod
run: go mod tidy
- name: Run Integration_Test
run: make integration-test