github.com/wtfutil/wtf@v0.43.0/.github/workflows/codeql-analysis.yml (about) 1 name: "Code scanning - action" 2 3 on: 4 pull_request: 5 schedule: 6 - cron: '0 3 * * 3,6' 7 8 jobs: 9 CodeQL-Build: 10 11 runs-on: ubuntu-latest 12 13 steps: 14 - name: Checkout repository 15 uses: actions/checkout@v3.3.0 16 17 # Initializes the CodeQL tools for scanning. 18 - name: Initialize CodeQL 19 uses: github/codeql-action/init@v2 20 # Override language selection by uncommenting this and choosing your languages 21 # with: 22 # languages: go, javascript, csharp, python, cpp, java 23 24 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). 25 # If this step fails, then you should remove it and run the build manually (see below) 26 - name: Autobuild 27 uses: github/codeql-action/autobuild@v2 28 29 # âšī¸ Command-line programs to run using the OS shell. 30 # đ https://git.io/JvXDl 31 32 # âī¸ If the Autobuild fails above, remove it and uncomment the following three lines 33 # and modify them (or add more) to build your code if your project 34 # uses a compiled language 35 36 #- run: | 37 # make bootstrap 38 # make release 39 40 - name: Perform CodeQL Analysis 41 uses: github/codeql-action/analyze@v2