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 8bbe1a7 commit 421f1f9Copy full SHA for 421f1f9
.github/workflows/maven.yml
@@ -21,13 +21,15 @@ jobs:
21
java: [ 8, 11 ]
22
name: Java ${{ matrix.Java }}
23
steps:
24
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
25
- name: Setup java
26
uses: actions/setup-java@v2
27
with:
28
distribution: 'zulu'
29
java-version: ${{ matrix.java }}
30
- name: Test with Maven
31
run: mvn test -B -f ./aliyun-java-sdk-core/pom.xml
32
- - name: Post test coverage
33
- run: bash <(curl -s https://codecov.io/bash) -cF java
+ - name: Upload Coverage Report
+ uses: codecov/codecov-action@v4
34
+ with:
35
+ token: ${{ secrets.CODECOV_TOKEN }} # required
0 commit comments