Skip to content

docs: Updated docstrings #18

docs: Updated docstrings

docs: Updated docstrings #18

Workflow file for this run

name: Go CI
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ '**' ]
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-file: ./go.mod
- name: Build
run: go build ./...
- name: Run Tests
run: go test -v ./...