Skip to content

Add minimal test case for semantic highlighting #55

Add minimal test case for semantic highlighting

Add minimal test case for semantic highlighting #55

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- '**'
pull_request:
branches:
- '**'
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [linux, windows, darwin]
arch: [amd64, arm64]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21.x'
- name: build all binaries
run: go build -v ./...
- name: Test
run: go test -v ./...