Skip to content

add: ci and release workflows #2

add: ci and release workflows

add: ci and release workflows #2

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-go:
name: Go Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
build-makefile:
name: Makefile Build and Install
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
- name: Build
run: make
- name: Install
run: make install