Skip to content

Add null checks for textfield texts. (#110) #80

Add null checks for textfield texts. (#110)

Add null checks for textfield texts. (#110) #80

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- master
tags:
- 'v*.*.*'
paths-ignore:
- .dockerignore
- .gitignore
- Dockerfile
- LICENSE
- README.md
- demo-media/*
- chocolatey/**
pull_request:
branches:
- master
env:
JAVA_VERSION: '17.0.8+7'
JAVA_DISTRIBUTION: 'temurin'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java-kotlin' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRIBUTION }}
cache: gradle
- name: Verify Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"