forked from Ilhasoft/mailroom
-
Notifications
You must be signed in to change notification settings - Fork 2
95 lines (83 loc) · 2.76 KB
/
ci.yml
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: CI
on: [push, pull_request]
env:
go-version: '1.17.5'
postgis-version: '3.1'
redis-version: '3.2.4'
jobs:
test:
name: Test
strategy:
matrix:
pg-version: ['12', '13']
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Install Redis
uses: zhulik/[email protected]
with:
redis version: ${{ env.redis-version }}
- name: Install PostgreSQL
uses: nyaruka/[email protected]
with:
postgresql version: ${{ matrix.pg-version }}
postgis version: ${{ env.postgis-version }}
postgresql password: temba
postgresql arguments: postgres -N 300
- name: Install Linux packages
run: sudo apt install -y --no-install-recommends postgresql-client
- name: Initialize database
# we create our test database with a different user so that we can drop everything owned by this user between tests
run: |
export PGPASSWORD=temba
psql -h localhost -U postgres --no-password -c "CREATE USER mailroom_test PASSWORD 'temba';"
psql -h localhost -U postgres --no-password -c "ALTER ROLE mailroom_test WITH SUPERUSER;"
psql -h localhost -U postgres --no-password -c "CREATE DATABASE mailroom_test;"
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ env.go-version }}
- name: Run tests
run: |
export PGPASSWORD=temba
go test -p=1 -coverprofile=coverage.text -covermode=atomic ./...
- name: Upload coverage
if: success()
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: false
release:
name: Release
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Fetch GoFlow docs
# for backward compatibility, English docs are copied to root of docs directory
run: |
GOFLOW_VERSION=$(grep weni-ai/goflow go.mod | cut -d" " -f5)
curl -L https://github.com/weni-ai/goflow/releases/download/${GOFLOW_VERSION}/docs.tar.gz | tar zxv
cp ./docs/en-us/*.* docs/
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ env.go-version }}
- name: Publish release
uses: goreleaser/goreleaser-action@v1
if: ${{ !contains(github.ref, '-') }}
with:
version: v0.147.2
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish non-master release
uses: goreleaser/goreleaser-action@v1
if: contains(github.ref, '-')
with:
version: v0.147.2
args: release --rm-dist --skip-validate
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}