Unit/Integration Test #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |