apollo-backend/.github/workflows/test.yml

30 lines
740 B
YAML

on: [push, pull_request]
name: Unit Tests
jobs:
test:
runs-on: ubuntu-latest
env:
DATABASE_URL: postgres://postgres:postgres@localhost/apollo_test
services:
postgres:
image: postgres
env:
POSTGRES_DB: apollo_test
POSTGRES_PASSWORD: postgres
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.3
- uses: golangci/golangci-lint-action@v3
- run: psql -f docs/schema.sql $DATABASE_URL
- run: go test ./... -v -race -timeout 5s