Skip to content

ci(github): Update workflows and makefile #31

ci(github): Update workflows and makefile

ci(github): Update workflows and makefile #31

Workflow file for this run

name: Build
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23
- name: Build
run: make build
- name: Test
run: make test