Skip to content

Commit 5c9ca6b

Browse files
author
Zbynek Konecny
committed
keep going for checkstyle
1 parent 4ce70ae commit 5c9ca6b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/quick-check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on: [push, pull_request]
66
jobs:
77
build:
88
runs-on: ubuntu-latest
9+
# jobs other than 21 should not halt the whole build
10+
continue-on-error: ${{ matrix.java-version != '21' }}
911
strategy:
1012
matrix:
1113
java-version: ['11', '17', '21', '22']
@@ -59,7 +61,7 @@ jobs:
5961
done
6062
- name: Upload checkstyle xml for manual review
6163
uses: actions/upload-artifact@v4
62-
if: ${{ matrix.java-version == '21' }}
64+
if: ${{ always() && matrix.java-version == '21' }}
6365
with:
6466
name: checkstyle-reports-java${{ matrix.java-version }}
6567
path: 'gwt/build/out/**/checkstyle*.xml'

0 commit comments

Comments
 (0)