Skip to content

feat: add scrub command to remove credentials from AI CLI session logs #27

feat: add scrub command to remove credentials from AI CLI session logs

feat: add scrub command to remove credentials from AI CLI session logs #27

Workflow file for this run

name: Go Build and Test
on:
push:
branches: [ main ]
pull_request:
permissions:
contents: read
jobs:
build_test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Setup Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
with:
go-version: '1.25'
cache: false
- name: Install dependencies
run: go mod download
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Race Test
run: go test -race -count=1 ./...