Skip to content

feat: add mask_stdout to redact secrets from sandboxed process output #52

feat: add mask_stdout to redact secrets from sandboxed process output

feat: add mask_stdout to redact secrets from sandboxed process output #52

Workflow file for this run

name: Test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
cache: true
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test ./... -v
- name: Build binary
run: make build-local
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
cache: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=5m