File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,10 @@ concurrency:
4848env :
4949 DOTNET_SKIP_FIRST_TIME_EXPERIENCE : true
5050 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"
5455
5556jobs :
5657 build-and-test :
@@ -132,7 +133,6 @@ jobs:
132133 name : coverage
133134 path : ' **/coverage.cobertura.xml'
134135 - name : Upload coverage to codecov.io
135- # TODO: Why does codecov report 3.83% decreased coverage?
136136 if : matrix.os == 'ubuntu-latest'
137137 uses : codecov/codecov-action@v3
138138 - name : Generate packages
You can’t perform that action at this time.
0 commit comments