We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b83ecb1 commit cfad1c8Copy full SHA for cfad1c8
.github/workflows/integration.yaml
@@ -122,7 +122,6 @@ jobs:
122
123
- name: Download results
124
run: |
125
- cd webserver
126
mkdir covs
127
curl "${{ steps.server.outputs.server }}:${{ steps.env.outputs.port }}/api/v1/coverout" |
128
jq -r '.merged' |
@@ -133,8 +132,10 @@ jobs:
133
132
sed -i 's|^/go/src|github.com/ctfer-io/romeo/webserver|' cov.out
134
sed -i 's|^github.com/ctfer-io/romeo/||' cov.out
135
cat cov.out
+ working-directory: webserver
136
137
- name: Upload coverage to Coveralls
138
uses: shogo82148/actions-goveralls@e6875f831db61e6abffbd8df91a2eb6cd24b46c9 # v1.9.1
139
with:
140
- path-to-profile: 'webserver/cov.out'
+ path-to-profile: 'cov.out'
141
+ working-directory: 'webserver'
0 commit comments