Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ jobs:
shell: bash

- name: Test
# parallel testing is disabled because somehow parallel testing causes Github Actions to kill the runner.
run: go test -parallel=1 -race ./...
# Parallel testing is disabled because somehow parallel testing causes Github Actions to kill the runner.
# Disabling CGO because that is not working on the Windows runner. Apparently, we could install MingW and set up
# CGO to work, but disabling CGO takes less CI time. Without CGO, we also must not use the race detector.
run: go test -parallel=1 ./...
env:
CGO_ENABLED: 0
PGX_TEST_DATABASE: ${{ steps.postgres.outputs.connection-uri }}
Loading