Skip to content

Adding GenAI capability #4

Adding GenAI capability

Adding GenAI capability #4

Workflow file for this run

name: tests
on:
push:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the codebase and install Golang for testing
- name: Checkout
uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: 1.21.x
cache-dependency-path: |
**/go/sum
**/go.mod
# Run unit tests
- id: test
run: |
go test ./... -v -covermode=count