Skip to content

Cleaning up the code, adding lint and build workflows, adding makefil… #24

Cleaning up the code, adding lint and build workflows, adding makefil…

Cleaning up the code, adding lint and build workflows, adding makefil… #24

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
cache: false
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test -v ./...