Skip to content

feat(web): Implement execute commands through rest APIs (#167) #320

feat(web): Implement execute commands through rest APIs (#167)

feat(web): Implement execute commands through rest APIs (#167) #320

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.1
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.23.2
- name: Vendor Go Modules
run: go mod vendor
- name: Build the binary
run: make build