ComboBox: added UI property `ComboBox.buttonFocusedEditableBackground… #21
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
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
| # https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
| name: Error Prone | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags: | |
| - '[0-9]*' | |
| paths-ignore: | |
| - '**.md' | |
| - '.*' | |
| - '**/.settings/**' | |
| - 'flatlaf-core/svg/**' | |
| - 'flatlaf-natives/**' | |
| - 'flatlaf-testing/dumps/**' | |
| - 'flatlaf-testing/misc/**' | |
| - 'images/**' | |
| jobs: | |
| error-prone: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'JFormDesigner/FlatLaf' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Java 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: temurin # pre-installed on ubuntu-latest | |
| - name: Cache Gradle | |
| uses: ./.github/actions/cache-gradle | |
| - name: Check with Error Prone | |
| run: ./gradlew errorprone |