Skip to content

Commit

Permalink
no checkstyle or java import check if code doesn't compile
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed Jul 29, 2022
1 parent 5f7201c commit 6b0bc09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:
uses: ./.github/actions/build

- name: Java Import Check
if: always()
if: ${{ always() && steps.build.conclusion == 'success' }}
id: sortimport
uses: ./.github/actions/sortimport

- name: Code Style Check
if: always()
if: ${{ always() && steps.build.conclusion == 'success' }}
id: checkstyle
uses: ./.github/actions/checkstyle

Expand Down

0 comments on commit 6b0bc09

Please sign in to comment.