github.com/iotexproject/iotex-core@v1.14.1-rc1/.github/workflows/analysis.yaml (about) 1 name: "Code Scanning - CodeQL" 2 3 on: 4 schedule: 5 - cron: "30 0 * * *" 6 workflow_dispatch: 7 8 jobs: 9 CodeQL-Build: 10 runs-on: ubuntu-latest 11 permissions: 12 security-events: write 13 14 actions: read 15 contents: read 16 17 steps: 18 - name: Checkout repository 19 uses: actions/checkout@v3 20 21 - name: Initialize CodeQL 22 uses: github/codeql-action/init@v2 23 with: 24 languages: go 25 26 - run: | 27 make build 28 29 - name: Perform CodeQL Analysis 30 uses: github/codeql-action/analyze@v2