Skip to content

Upgrade to go 1.24.1 (#106) #417

Upgrade to go 1.24.1 (#106)

Upgrade to go 1.24.1 (#106) #417

Workflow file for this run

name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: pggen
POSTGRES_USER: postgres
POSTGRES_PASSWORD: hunter2
ports:
- 5555:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go test ./...
- run: go test --tags=acceptance_test ./...
env:
DOCKER_API_VERSION: 1.39