test(marginal): pin EAP binary64 reduction identity before optimization #3722
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: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze-actions: | |
| # Branch protection requires a deterministic Actions-language CodeQL check | |
| # on PRs. Default setup remains the repository's code-scanning upload owner. | |
| name: Analyze (actions) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd | |
| with: | |
| languages: actions | |
| - uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd | |
| with: | |
| upload: never | |
| analyze-python: | |
| # Default setup already owns ordinary Python code-scanning uploads. | |
| # Retain a no-upload advanced diagnostic only for explicit operator runs. | |
| if: github.event_name == 'workflow_dispatch' | |
| name: Analyze (python) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd | |
| with: | |
| languages: python | |
| - uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd | |
| with: | |
| upload: never |