ci: adjusting to backend tests

This commit is contained in:
Reinaldy Rafli 2021-07-17 18:27:26 +07:00
parent 544530cd27
commit b8cfde8560
3 changed files with 65 additions and 21 deletions

View File

@ -8,6 +8,28 @@ jobs:
api-build:
name: Build
runs-on: ubuntu-latest
container: golang:1.16.6
services:
postgres:
image: postgres:13-alpine
env:
PGDATABASE: jokesbapak2
POSTGRES_DB: jokesbapak2
PGUSER: postgres
POSTGRES_USER: postgres
PGPASSWORD: password
POSTGRES_PASSWORD: password
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:6.2-alpine
ports:
- 6379:6379
defaults:
run:
working-directory: ./api
@ -16,12 +38,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: cache node_modules
- name: cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
@ -38,6 +55,11 @@ jobs:
- name: Run test & coverage
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
env:
ENV: development
PORT: 5000
DATABASE_URL: postgres://postgres:password@postgres:5432/jokesbapak2
REDIS_URL: redis://@redis:6379
- name: Initialize CodeQL
uses: github/codeql-action/init@v1

View File

@ -61,6 +61,28 @@ jobs:
api-build:
name: API
runs-on: ubuntu-latest
container: golang:1.16.6
services:
postgres:
image: postgres:13-alpine
env:
PGDATABASE: jokesbapak2
POSTGRES_DB: jokesbapak2
PGUSER: postgres
POSTGRES_USER: postgres
PGPASSWORD: password
POSTGRES_PASSWORD: password
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:6.2-alpine
ports:
- 6379:6379
defaults:
run:
working-directory: ./api
@ -69,12 +91,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: cache node_modules
- name: cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
@ -91,6 +108,11 @@ jobs:
- name: Run test & coverage
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
env:
ENV: development
PORT: 5000
DATABASE_URL: postgres://postgres:password@postgres:5432/jokesbapak2
REDIS_URL: redis://@redis:6379
- name: Initialize CodeQL
uses: github/codeql-action/init@v1