Skip to content

Bugfix/sdk 4.9.0 (#208) #19

Bugfix/sdk 4.9.0 (#208)

Bugfix/sdk 4.9.0 (#208) #19

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Build
run: |
./gradlew build -x testReleaseUnitTest -x testDebugUnitTest -x check -x lint --continue
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2