Skip to content

feat(ci): introduce codeql #3

feat(ci): introduce codeql

feat(ci): introduce codeql #3

Workflow file for this run

name: CodeQL Analysis
on:
pull_request:
types: [ opened, reopened, synchronize ]
push:
branches:
- main
jobs:
CodeQL-Build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install flatc
run: sudo bash install_flatc.sh
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
cache: "maven"
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2