Skip to content

Commit cfad1c8

Browse files
committed
ci: set working directory for goveralls action
1 parent b83ecb1 commit cfad1c8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/integration.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ jobs:
122122
123123
- name: Download results
124124
run: |
125-
cd webserver
126125
mkdir covs
127126
curl "${{ steps.server.outputs.server }}:${{ steps.env.outputs.port }}/api/v1/coverout" |
128127
jq -r '.merged' |
@@ -133,8 +132,10 @@ jobs:
133132
sed -i 's|^/go/src|github.com/ctfer-io/romeo/webserver|' cov.out
134133
sed -i 's|^github.com/ctfer-io/romeo/||' cov.out
135134
cat cov.out
135+
working-directory: webserver
136136

137137
- name: Upload coverage to Coveralls
138138
uses: shogo82148/actions-goveralls@e6875f831db61e6abffbd8df91a2eb6cd24b46c9 # v1.9.1
139139
with:
140-
path-to-profile: 'webserver/cov.out'
140+
path-to-profile: 'cov.out'
141+
working-directory: 'webserver'

0 commit comments

Comments
 (0)