We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8161ea commit 3d0de14Copy full SHA for 3d0de14
.github/workflows/demo-workflow.yml
@@ -30,8 +30,16 @@ jobs:
30
- name: Build with Maven
31
run: mvn -B package --file pom.xml -Dmaven.test.skip=true
32
33
+ - uses: codecov/codecov-action@v1
34
+ with:
35
+ token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
36
+ file: ./coverage.xml # optional
37
+ flags: unittests # optional
38
+ name: codecov-umbrella # optional
39
+ fail_ci_if_error: true # optional (default = false)
40
+
41
- name: Upload Maven build artifact
42
uses: actions/upload-artifact@v1
43
with:
44
name: artifact
- path: workflow-github-actions/target/workflow-github-actions-1.0-SNAPSHOT.jar
45
+ path: target/workflow-github-actions-1.0-SNAPSHOT.jar
0 commit comments