This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
chore: run go mod tidy #228
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Integration Test | |
on: [push, pull_request] | |
jobs: | |
integration: | |
name: Postgres | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: passwd | |
POSTGRES_USER: user | |
POSTGRES_DB: LassieEvents | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "1.19.x" | |
- name: Run integration tests with race detector | |
run: go test -v -race --tags=integration ./... |