fix: Homebrew tap workflow — remove heredoc causing YAML parse error #143
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |