Skip to content

Commit

Permalink
Merge pull request treasure-data#1417 from treasure-data/code-scanning
Browse files Browse the repository at this point in the history
Add code scanning workflow
  • Loading branch information
komamitsu authored and You Yamagata committed Dec 8, 2020
1 parent 4d19e04 commit 8f90b6a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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, v0_10]

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ matrix.ref }}

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

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

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

0 comments on commit 8f90b6a

Please sign in to comment.