Merge pull request #107 from bernardladenthin/claude/modest-fermi-x2nurn #168
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2014-2026 Bernard Ladenthin <bernard.ladenthin@gmail.com> | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: CodeQL | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| schedule: | |
| - cron: "12 1 * * 0" | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: { java-version: '21', distribution: temurin } | |
| - uses: github/codeql-action/init@v4 | |
| with: { languages: java, queries: +security-and-quality } | |
| - name: Build with Maven | |
| run: mvn --batch-mode --no-transfer-progress compile | |
| - uses: github/codeql-action/analyze@v4 | |
| with: { category: "/language:java" } |