Skip to content

fix previous

fix previous #61

Workflow file for this run

# Make sure the client doesn't run successfully without the -y flag
name: privacy
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- uses: actions/checkout@v4
- run: go build -v ./cmd/dash-client
- run: |
if ./dash-client; then
echo "expected this command to fail"
exit 1
fi