123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- name: "CodeQL"
- on:
- push:
- branches: [ main ]
- pull_request:
- paths:
- - '.github/workflows/codeql.yml'
- schedule:
- - cron: '0 19 * * 0'
- permissions:
- contents: read
- security-events: write
- jobs:
- analyze:
- name: Analyze
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- language: [ 'go' ]
-
-
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2
- with:
-
-
- fetch-depth: 2
-
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v1
- with:
- languages: ${{ matrix.language }}
-
-
-
-
-
-
- - name: Autobuild
- uses: github/codeql-action/autobuild@v1
-
-
-
-
-
-
-
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v1
|