We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ce70ae commit 5c9ca6bCopy full SHA for 5c9ca6b
.github/workflows/quick-check.yml
@@ -6,6 +6,8 @@ on: [push, pull_request]
6
jobs:
7
build:
8
runs-on: ubuntu-latest
9
+ # jobs other than 21 should not halt the whole build
10
+ continue-on-error: ${{ matrix.java-version != '21' }}
11
strategy:
12
matrix:
13
java-version: ['11', '17', '21', '22']
@@ -59,7 +61,7 @@ jobs:
59
61
done
60
62
- name: Upload checkstyle xml for manual review
63
uses: actions/upload-artifact@v4
- if: ${{ matrix.java-version == '21' }}
64
+ if: ${{ always() && matrix.java-version == '21' }}
65
with:
66
name: checkstyle-reports-java${{ matrix.java-version }}
67
path: 'gwt/build/out/**/checkstyle*.xml'
0 commit comments