Skip to content

Add OSSF Scorecard and Go unit test workflows #2

Add OSSF Scorecard and Go unit test workflows

Add OSSF Scorecard and Go unit test workflows #2

Workflow file for this run

name: Go Unit Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Install dependencies
run: go mod download
- name: Run unit tests
run: make test-unit