[BUGS#1251] FindMatches always search separate segment match without penalty: add regression test, fix it, make configurable, show where comes from in FuzzyMatch pane, and refactor #1735
This file contains 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
name: Run SpotBugs | |
on: | |
push: | |
branches: | |
- master | |
- releases/* | |
pull_request: | |
jobs: | |
spotbugs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: create annotation | |
run: echo "::add-matcher::${{ github.workspace }}/ci/github/problem-matcher.json" | |
- name: setup gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: run spotbugs | |
run: ./gradlew --continue -PenvIsCi spotbugsMain spotbugsTest |