Skip to content

Commit 3d1ff2e

Browse files
committed
comment
1 parent 39e02f0 commit 3d1ff2e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/dotnet.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ concurrency:
4848
env:
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

5556
jobs:
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

0 commit comments

Comments
 (0)