Skip to content

DPTN-1306 - Adding code coverage check to UT ci job #1608

DPTN-1306 - Adding code coverage check to UT ci job

DPTN-1306 - Adding code coverage check to UT ci job #1608

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
workflow_call:
jobs:
unit_test:
name: Golang Unit Tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-14]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install Go dependencies
run: go mod download
- name: Build and Test
run: |
scripts/build.sh
scripts/unit_test.sh
env:
CGO_CFLAGS: "-O -D__BLST_PORTABLE__" # Set the CGO flags to use the portable version of BLST
- name: Check Code Coverage
run: |
scripts/check_coverage_unit_test.sh