Skip to content

Java 25への移行 #97

Java 25への移行

Java 25への移行 #97

Workflow file for this run

name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
qodana:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: 'Set up JDK 25'
uses: actions/setup-java@v4
with:
java-version: '25'
distribution: 'temurin'
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2025.3
with:
args: -v,${{ env.JAVA_HOME }}:/root/.jdks/jdk-25
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}