...

Text file src/google.golang.org/grpc/.github/workflows/codeql-analysis.yml

Documentation: google.golang.org/grpc/.github/workflows

     1name: "CodeQL"
     2
     3on:
     4  push:
     5    branches: [ master ]
     6  schedule:
     7    - cron: '24 20 * * 3'
     8
     9permissions:
    10  contents: read
    11
    12jobs:
    13  analyze:
    14    name: Analyze
    15    runs-on: ubuntu-latest
    16    timeout-minutes: 30
    17
    18    permissions:
    19      security-events: write
    20      pull-requests: read
    21      actions: read
    22
    23    strategy:
    24      fail-fast: false
    25
    26    steps:
    27    - name: Checkout repository
    28      uses: actions/checkout@v4
    29
    30    # Initializes the CodeQL tools for scanning.
    31    - name: Initialize CodeQL
    32      uses: github/codeql-action/init@v2
    33      with:
    34        languages: go
    35
    36    - name: Perform CodeQL Analysis
    37      uses: github/codeql-action/analyze@v2

View as plain text