Code scanning #182
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Code scanning" | |
on: | |
schedule: | |
# Friday 8AM UTC / Friday 5PM JST | |
- cron: '0 8 * * 5' | |
jobs: | |
CodeQL-Build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ref: [ master ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ matrix.ref }} | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: java | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |