Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 #37

Bump golang.org/x/net from 0.17.0 to 0.23.0

Bump golang.org/x/net from 0.17.0 to 0.23.0 #37

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'v*'
pull_request: {}
jobs:
test:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.18.x, 1.21.x]
os: [ubuntu-latest]
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432/tcp
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
ENV: test
POSTGRES_USERNAME: postgres
POSTGRES_PASSWORD: postgres
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{matrix.go-version}}
- name: Tests
run: go test -v ./...
env:
POSTGRES_PORT: ${{ job.services.postgres.ports['5432'] }}