Skip to content

refactor: convert to pure TypeScript plugin for native OpenCode integ… #3

refactor: convert to pure TypeScript plugin for native OpenCode integ…

refactor: convert to pure TypeScript plugin for native OpenCode integ… #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.26"
- name: Build
run: go build -v ./...
- name: Vet
run: go vet ./...
- name: Run integration tests
run: cd tests && go run test_v2.go
- name: Run stress tests with race detector
run: cd tests && go run -race test_stress.go