Skip to content

OTTL Playground Autocomplete Implementation Summary #26

OTTL Playground Autocomplete Implementation Summary

OTTL Playground Autocomplete Implementation Summary #26

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install Go dependencies
run: go get .
- name: Build
run: make build-web build-wasm
- name: Run Go Tests
run: go test -v ./...