Skip to content

Fix make test and hook it up to the pipeline. #12

Fix make test and hook it up to the pipeline.

Fix make test and hook it up to the pipeline. #12

Workflow file for this run

name: Go Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21.1
- name: Build
run: make
- name: Test
run: make test