Skip to content

Commit

Permalink
chore: Change lint checker to github action workflow
Browse files Browse the repository at this point in the history
Previously applied lint check actions are deprecated.
  • Loading branch information
PENEKhun committed Jan 27, 2024
1 parent 73e5b60 commit 3868ada
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ jobs:
- name: Set up Gradle
uses: gradle/gradle-build-action@v2

- name: Build with Gradle
run: ./gradlew build

- uses: jwgmeligmeyling/checkstyle-github-action@master
with:
path: '**/checkstyle-result.xml'

- name: Upload build reports
uses: actions/upload-artifact@v4
if: failure()
with:
name: build-reports
path: '**/build/reports/'
path: '**/build/reports/'

- name: Run check style
uses: nikitasavinov/checkstyle-action@master
with:
github_token: ${{ secrets.TOKEN }}
reporter: 'github-pr-check'
checkstyle_config: '/config/checkstyle/checkstyle.xml'

0 comments on commit 3868ada

Please sign in to comment.