-
Notifications
You must be signed in to change notification settings - Fork 3
41 lines (37 loc) · 1.05 KB
/
codeql.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CodeQL
on:
push:
branches: [ "mainline" ]
pull_request:
branches: [ "mainline" ]
jobs:
analyze:
name: Analyze
runs-on: ${{ matrix.os }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-20.04" ]
language: [ "javascript", "python" ] #TODO Add "java" as soon as CodeQL supports Kotlin 1.8.0
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- if: matrix.language == 'java'
name: Build Java
run: |
gradle clean build --project-dir server
- if: matrix.language == 'javascript' || matrix.language == 'python'
name: AutoBuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"