Skip to content

style: fix all checkstyle violations #12

style: fix all checkstyle violations

style: fix all checkstyle violations #12

Workflow file for this run

name: CodeQL
on:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
schedule:
- cron: "0 16 * * 0"
workflow_dispatch:
permissions: {}
concurrency:
group: codeql-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
analyse:
name: Analyse Java
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
timeout-minutes: 45
permissions:
security-events: write
contents: read
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: "17"
distribution: "temurin"
cache: "maven"
- name: Initialise CodeQL
uses: github/codeql-action/init@v4
with:
languages: java
build-mode: manual
- name: Build
run: mvn -B -DskipTests package
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v4