File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,10 @@ concurrency:
48
48
env :
49
49
DOTNET_SKIP_FIRST_TIME_EXPERIENCE : true
50
50
DOTNET_CLI_TELEMETRY_OPTOUT : true
51
- # Windows comes with PostgreSQL pre-installed, and defines the PGPASSWORD environment variable. Remove it as it interferes
52
- # with the tests running from AppVeyor
53
- PGPASSWORD : " "
51
+ # The Windows runner image has PostgreSQL pre-installed and sets the PGPASSWORD environment variable to "root".
52
+ # This conflicts with the default password "postgres", which is used by ikalnytskyi/action-setup-postgres.
53
+ # Because action-setup-postgres forgets to update the environment variable accordingly, we do so here.
54
+ PGPASSWORD : " postgres"
54
55
55
56
jobs :
56
57
build-and-test :
@@ -132,7 +133,6 @@ jobs:
132
133
name : coverage
133
134
path : ' **/coverage.cobertura.xml'
134
135
- name : Upload coverage to codecov.io
135
- # TODO: Why does codecov report 3.83% decreased coverage?
136
136
if : matrix.os == 'ubuntu-latest'
137
137
uses : codecov/codecov-action@v3
138
138
- name : Generate packages
You can’t perform that action at this time.
0 commit comments