CWDB-225 - Implemented Measurement Controller #965
Workflow file for this run
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: "CodeQL" | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Initialize CodeQL | |
uses: github/codeql-action/[email protected] | |
with: | |
languages: 'java' | |
- name: setup java | |
uses: actions/[email protected] | |
with: | |
java-version: '8' | |
java-package: jdk | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
with: | |
dependency-graph: generate-and-submit | |
- name: build and test | |
id: build | |
run: ./gradlew build --info --init-script init.gradle | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/[email protected] |