From 0582c151e0e1f4c86ad1e4bf843bddb1c6dbfa80 Mon Sep 17 00:00:00 2001 From: Piotr Kowalczuk Date: Tue, 16 Jan 2024 12:39:28 +0100 Subject: [PATCH] update go.yml --- .github/workflows/go.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 191f627..5dca813 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -32,11 +32,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.20' - - name: Test - run: go test -race -count=2 -v ./... - env: - PQT_POSTGRES_ADDRESS: postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable + - name: setup + uses: actions/setup-go@v4 + with: + go-version: '1.20' + - name: test + run: go test -race -count=2 -v ./... + env: + PQT_POSTGRES_ADDRESS: postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable