Skip to content

352 create tls store for letsencrypt or custom certificate #582

352 create tls store for letsencrypt or custom certificate

352 create tls store for letsencrypt or custom certificate #582

Workflow file for this run

name: Go build and test
on:
push:
branches:
- master
- development
pull_request:
branches:
- master
- development
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: secret
POSTGRES_USER: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Build
run: go build -v ./...
- name: Test
run: DB_SERVER_URL=postgres://postgres:secret@localhost:5432/postgres SEND_GRID_API_KEY=test go test -v ./...