Skip to content

docs: Updates on Setup and Demo documentation (#5) #45

docs: Updates on Setup and Demo documentation (#5)

docs: Updates on Setup and Demo documentation (#5) #45

Workflow file for this run

name: Test and Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.23' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make build
- name: Run unit tests
run: make test