-
Notifications
You must be signed in to change notification settings - Fork 12
96 lines (93 loc) · 2.74 KB
/
test.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
96
name: tests
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
windows:
runs-on: windows-latest
env:
BAUR_TEST_POSTGRESQL_URL: "postgres://baurtest:baurtest@localhost:5432/postgres?sslmode=disable"
steps:
- name: Start PostgreSQL
run: |
$pgService = Get-Service -Name postgresql*
Set-Service -InputObject $pgService -Status running -StartupType automatic
Start-Process -FilePath "$env:PGBIN\pg_isready" -Wait -PassThru
- name: Create PostgreSQL user
run: |
set +e
set -x
"$PGBIN"/createuser --createdb baurtest
"$PGBIN"/psql -c "ALTER USER baurtest PASSWORD 'baurtest';" postgres
shell: bash
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Checkout Git
uses: actions/checkout@v4
- name: Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "baur"
- uses: actions/cache@v3
with:
path: |
~\AppData\Local\go-build
key: ${{ runner.os }}-go-test-${{ hashFiles('**/go.sum') }}
- name: Run Tests with Race Detector
run: |
go test -tags=dbtest -race -timeout 5m ./...
shell: bash
- name: Run Tests without Race Detector and CGO
env:
CGO_ENABLED: 0
run: |
go test -tags=dbtest -timeout 5m ./...
shell: bash
linux:
runs-on: ubuntu-latest
env:
BAUR_TEST_POSTGRESQL_URL: "postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable"
services:
postgres:
image: postgres
env:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Checkout Git
uses: actions/checkout@v4
- name: Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "baur"
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-test-${{ hashFiles('**/go.sum') }}
- name: Run Tests with Race Detector
run: |
go test -tags=dbtest -race -timeout 5m ./...
- name: Run Tests without Race Detector and CGO
env:
CGO_ENABLED: 0
run: |
go test -tags=dbtest -timeout 5m ./...