Skip to content

fix(conpty): close the pseudo console only once #210

fix(conpty): close the pseudo console only once

fix(conpty): close the pseudo console only once #210

Workflow file for this run

# auto-generated by scripts/dependabot. DO NOT EDIT.
name: build
on: [push, pull_request]
jobs:
slice:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./exp/slice
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/slice/go.mod
cache: true
cache-dependency-path: ./exp/slice.sum
- run: go build -v ./...
- run: go test -race -v ./...
teatest:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./exp/teatest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/teatest/go.mod
cache: true
cache-dependency-path: ./exp/teatest.sum
- run: go build -v ./...
- run: go test -race -v ./...
strings:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./exp/strings
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/strings/go.mod
cache: true
cache-dependency-path: ./exp/strings.sum
- run: go build -v ./...
- run: go test -race -v ./...
ordered:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./exp/ordered
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/ordered/go.mod
cache: true
cache-dependency-path: ./exp/ordered.sum
- run: go build -v ./...
- run: go test -race -v ./...
term:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./exp/term
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/term/go.mod
cache: true
cache-dependency-path: ./exp/term.sum
- run: go build -v ./...
- run: go test -race -v ./...
higherorder:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./exp/higherorder
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./exp/higherorder/go.mod
cache: true
cache-dependency-path: ./exp/higherorder.sum
- run: go build -v ./...
- run: go test -race -v ./...
editor:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./editor
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./editor/go.mod
cache: true
cache-dependency-path: ./editor.sum
- run: go build -v ./...
- run: go test -race -v ./...
errors:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./errors
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: ./errors/go.mod
cache: true
cache-dependency-path: ./errors.sum
- run: go build -v ./...
- run: go test -race -v ./...