Skip to content

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #75

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0

Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #75

Workflow file for this run

name: Go Unit Test
# This workflow will build a golang project and run unit tests
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Get tags to allow build script to get build version
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.x
- name: Build
run: make build_amd
- name: Unit Test
run: make unit_test