Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: address inconsistencies/timing issues with GitHub Actions Testing #24

Merged
merged 7 commits into from
Sep 18, 2023
16 changes: 12 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:
branches: [main]
jobs:
Unit_Test:
runs-on: ubuntu-20.04
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.5'
go-version: '1.20.8'

- name: Install Dependencies
run: sudo apt install libzmq3-dev
Expand All @@ -25,16 +25,24 @@ jobs:
run: make test

Integration_Test:
runs-on: ubuntu-20.04
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 docker
run: make -j2 docker

- name: Download go-mod
run: go mod tidy

- name: Run Integration_Test
run: make integration-test