Skip to content

Fix #4072: 修复无法使用部分中文字体的问题 (#4074) #5406

Fix #4072: 修复无法使用部分中文字体的问题 (#4074)

Fix #4072: 修复无法使用部分中文字体的问题 (#4074) #5406

Workflow file for this run

name: Check Style
on:
push:
paths:
- '**.java'
pull_request:
paths:
- '**.java'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
java-package: 'jdk+fx'
- name: Check style main
run: ./gradlew checkstyleMain --no-daemon
- name: Check style test
run: ./gradlew checkstyleTest --no-daemon