We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b83ecb1 commit d1bcc6aCopy full SHA for d1bcc6a
.github/workflows/integration.yaml
@@ -131,10 +131,16 @@ jobs:
131
132
go tool covdata textfmt -i=covs -o cov.out
133
sed -i 's|^/go/src|github.com/ctfer-io/romeo/webserver|' cov.out
134
- sed -i 's|^github.com/ctfer-io/romeo/||' cov.out
+ sed -i 's|^github.com/ctfer-io/romeo/webserver/||' cov.out
135
+
136
cat cov.out
137
+ pwd
138
+ ls -al
139
140
- name: Upload coverage to Coveralls
141
uses: shogo82148/actions-goveralls@e6875f831db61e6abffbd8df91a2eb6cd24b46c9 # v1.9.1
142
with:
- path-to-profile: 'webserver/cov.out'
143
+ # this needs to be where it can find a go.mod
144
+ working-directory: ./webserver
145
+ # this path-to-profile is relative to the working-directory
146
+ path-to-profile: ./cov.out
0 commit comments