github.com/emmansun/gmsm@v0.29.1/.github/workflows/codeql-analysis.yml (about)

     1  
     2  name: "CodeQL Analysis"
     3  
     4  on:
     5    workflow_dispatch:
     6    schedule:
     7      #        ┌───────────── minute (0 - 59)
     8      #        │  ┌───────────── hour (0 - 23)
     9      #        │  │ ┌───────────── day of the month (1 - 31)
    10      #        │  │ │ ┌───────────── month (1 - 12 or JAN-DEC)
    11      #        │  │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
    12      #        │  │ │ │ │
    13      #        │  │ │ │ │
    14      #        │  │ │ │ │
    15      #        *  * * * *
    16      - cron: '30 1 * * *'
    17  
    18  jobs:
    19    CodeQL-Build:
    20      runs-on: ubuntu-latest
    21  
    22      steps:
    23        - name: Checkout repository
    24          uses: actions/checkout@v4
    25  
    26        # Initializes the CodeQL tools for scanning.
    27        - name: Initialize CodeQL
    28          uses: github/codeql-action/init@v2
    29          with:
    30            languages: go
    31  
    32        - name: Autobuild
    33          uses: github/codeql-action/autobuild@v2
    34  
    35        - name: Perform CodeQL Analysis
    36          uses: github/codeql-action/analyze@v2