Skip to content

Added sorting and escaping of strings. #126

Added sorting and escaping of strings.

Added sorting and escaping of strings. #126

Workflow file for this run

name: "CodeQL"
on:
push: # push on any branch
pull_request: # pull request on any branch
schedule:
- cron: '4 2 * * 0' # once a week, Sundays at 02:04 UTC.
workflow_dispatch: # manual trigger
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java-kotlin' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"