test: infra e2e settings and optional pprof e2e #4099
Workflow file for this run
This file contains 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: | |
merge_group: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
analyze: | |
name: Analyze | |
strategy: | |
fail-fast: false | |
matrix: | |
goos: [linux, windows] | |
goarch: [amd64, arm64] | |
language: [go] | |
runs-on: ubuntu-latest | |
env: | |
IS_NOT_MERGE_GROUP: ${{ github.event_name != 'merge_group' }} | |
GOOS: ${{ matrix.goos }} | |
GOARCH: ${{ matrix.goarch }} | |
timeout-minutes: 90 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
if: env.IS_NOT_MERGE_GROUP | |
uses: actions/checkout@v4 | |
- name: Setup go | |
if: env.IS_NOT_MERGE_GROUP | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Initialize CodeQL | |
if: env.IS_NOT_MERGE_GROUP | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Autobuild | |
if: env.IS_NOT_MERGE_GROUP | |
uses: github/codeql-action/autobuild@v3 | |
- name: Perform CodeQL Analysis | |
if: env.IS_NOT_MERGE_GROUP | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |