Skip to content

fix: Homebrew tap workflow — remove heredoc causing YAML parse error #143

fix: Homebrew tap workflow — remove heredoc causing YAML parse error

fix: Homebrew tap workflow — remove heredoc causing YAML parse error #143

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
schedule:
- cron: '30 2 * * 1'
jobs:
analyze:
name: Analyze (go)
runs-on: ubuntu-latest
permissions:
security-events: write
packages: read
actions: read
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: github/codeql-action/init@v4
with:
languages: go
# Build root module (CLI)
- name: Build CLI
run: go build ./...
# Build probe-convert tool (separate module)
- name: Build probe-convert
working-directory: tools/probe-convert
run: go build ./...
- uses: github/codeql-action/analyze@v4
with:
category: /language:go