Skip to content

trying test without postgres image #12

trying test without postgres image

trying test without postgres image #12

Workflow file for this run

name: ci-test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
# services:
# postgres:
# image: postgres:alpine
# env:
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: adi123
# POSTGRES_DB: bookmyroom
# ports:
# - 5432:5432
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Test
run: make test