fix(term): add missing ENABLE_VIRTUAL_TERMINAL_INPUT flag on Windows #406
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 ./... |