Skip to content

Commit

Permalink
Add codeql workflow (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
xukaren authored May 20, 2021
1 parent f781ed8 commit 9e12a9d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "CodeQL"

on:
workflow_dispatch:
schedule:
- cron: '30 1 * * *'

jobs:
CodeQL-Build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: java

- name: Setup Java 11
uses: actions/setup-java@v1
with:
java-version: 11

- name: Autobuild
uses: github/codeql-action/autobuild@v1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

0 comments on commit 9e12a9d

Please sign in to comment.