Check out code before setting up Go

This allows for caching the Go dependencies.
pull/1697/head
Jack Christensen 2023-07-22 17:13:30 -05:00
parent 87d771ef9c
commit 4091eedf03
1 changed files with 6 additions and 6 deletions

View File

@ -73,14 +73,14 @@ jobs:
pgx-test-database: "postgresql://root@127.0.0.1:26257/pgx_test?sslmode=disable&experimental_enable_temp_tables=on"
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Setup database server for testing
run: ci/setup_test.bash
env:
@ -136,14 +136,14 @@ jobs:
with:
database: pgx_test
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Initialize test database
run: |
psql -f testsetup/postgresql_setup.sql pgx_test