Skip to content

feat: add --no-tty flag to run and shell commands #2

feat: add --no-tty flag to run and shell commands

feat: add --no-tty flag to run and shell commands #2

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
concurrency:
group: ci-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
env:
GO_VERSION: 1.23
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Build
run: go build ./...
- name: Test
run: go test ./...