Skip to content

Merge pull request #31 from nrfta/dependabot/go_modules/golang.org/x/… #38

Merge pull request #31 from nrfta/dependabot/go_modules/golang.org/x/…

Merge pull request #31 from nrfta/dependabot/go_modules/golang.org/x/… #38

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'] }}