Skip to content

docs: add changelog for v1.10.0 #89

docs: add changelog for v1.10.0

docs: add changelog for v1.10.0 #89

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Test
on: pull_request
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: ./go.mod
- name: Build
run: go build -v ./...
- name: Run Unit Tests
run: make unit-test