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