File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,13 @@ jobs:
156156 RABBITMQ_DATABASE_URL : amqp://rabbitmq:rabbitmq@localhost:5672/
157157 POSTGRES_DATABASE_URL : postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable
158158 run : task test-integration
159+ - name : Upload coverage reports
160+ uses : codecov/codecov-action@v4
161+ with :
162+ file : ./coverage.out
163+ flags : unittests
164+ name : codecov-umbrella
165+ token : ${{ secrets.CODECOV_TOKEN }}
159166
160167 build :
161168 name : Build
Original file line number Diff line number Diff line change 6565 cmds :
6666 - cmd : ./bin/webhooked -p 8081 --config ./tests/integrations/webhooked_config.integrations.yaml &
6767 - defer : kill -9 $(pgrep -f "./bin/webhooked") || true
68- - cmd : go test -v --tags=integration ./...
68+ - cmd : go test ./... --tags=integration -coverprofile coverage.out -covermode count
6969
7070 test-load-testing :
7171 aliases : [tl]
You can’t perform that action at this time.
0 commit comments