Skip to content

fix: interactive PTY prompt detection for Copilot + response extraction #40

fix: interactive PTY prompt detection for Copilot + response extraction

fix: interactive PTY prompt detection for Copilot + response extraction #40

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
GONOSUMCHECK: github.com/GoCodeAlone/*
GONOSUMDB: github.com/GoCodeAlone/*
GOPRIVATE: github.com/GoCodeAlone/*
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: Configure git for private modules
run: git config --global url."https://${{ secrets.RELEASES_TOKEN }}@github.com/".insteadOf "https://github.com/"
- name: go vet
run: go vet ./...
- name: go test
run: go test -race ./...