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 43ab2f6 commit 43afe90Copy full SHA for 43afe90
1 file changed
.github/workflows/build.yml
@@ -38,10 +38,12 @@ jobs:
38
run: |
39
./gradlew --no-daemon -s :build
40
- name: Upload coverage to Codecov
41
- if: ${{ matrix.java == '23' && matrix.os == 'ubuntu-latest' }}
+ # skip minimum version
42
+ if: ${{ matrix.java != '23' }}
43
uses: codecov/codecov-action@v5.5.2
- env:
44
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+ with:
45
+ token: ${{ secrets.CODECOV_TOKEN }}
46
+ flags: java-${{ matrix.java }}-${{ matrix.os }}
47
- name: Save reports
48
uses: actions/upload-artifact@v6
49
if: ${{ failure() }}
0 commit comments