Skip to content

fix(ansi): tab is a zero-width character (#238) #399

fix(ansi): tab is a zero-width character (#238)

fix(ansi): tab is a zero-width character (#238) #399

Workflow file for this run

# auto-generated by scripts/builds. DO NOT EDIT.
name: term
on:
push:
branches:
- main
pull_request:
paths:
- term/**
- .github/workflows/term.yml
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./term
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./term/go.mod
cache: true
cache-dependency-path: ./term/go.sum
- run: go build -v ./...
- run: go test -race -v ./...