-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (55 loc) · 1.52 KB
/
Copy pathci.yml
File metadata and controls
69 lines (55 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: build
on:
push:
branches:
- main
jobs:
build-test:
runs-on: ubuntu-latest
services:
postgres: # Label used to access the service container
image: postgres:14-alpine
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
POSTGRES_DB: timetracker
POSTGRES_USER: timetraveler
POSTGRES_PASSWORD: timetraveler_changeme
POSTGRES_PORT: 5432
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v1
with:
go-version: 1.18
id: go
- name: Install Node/NPM
uses: actions/setup-node@v2-beta
with:
node-version: '16'
- name: Install Newman
run: npm install -g newman
- name: Install PostgreSQL Client
run: |
sudo apt-get update
sudo apt-get install -y postgresql-client
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Create PostgreSQL schema
run: |
psql -h localhost -d timetracker -a -f ./database/schema-1.sql
env:
PGUSER: timetraveler
PGPASSWORD: timetraveler_changeme
- name: Build
run: make build
- name: Unit Tests
run: make unit_test
- name: Integration Tests
run: make int_test
- name: Run Application
run: |
make run &
npx wait-on http-get://localhost:8000/_ping
- name: Postman Integration Tests
run: make postman