Skip to content

refactor: New Client Implementation #23

refactor: New Client Implementation

refactor: New Client Implementation #23

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 ./...